Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Deferred shading

From Wikipedia, the free encyclopedia
Screen-space shading technique
icon
This article'slead sectionmay be too short to adequatelysummarize the key points. Please consider expanding the lead toprovide an accessible overview of all important aspects of the article.(July 2013)
Diffuse Color G-Buffer
Z-Buffer
Surface Normal G-Buffer
Final compositing (To calculate the shadows shown in this image, other techniques such asshadow mapping,shadow feelers or ashadow volume must be used together with deferred shading.)[1]

In the field of3D computer graphics,deferred shading is ascreen-spaceshading technique that is performed on a secondrendering pass, after the vertex and pixelshaders are rendered.[2] It was first suggested byMichael Deering in 1988.[3]

On the first pass of a deferred shader, only data that is required for shading computation is gathered. Positions, normals, and materials for each surface are rendered into the geometry buffer (G-buffer) using "render to texture". After this, apixel shader computes the direct and indirect lighting at each pixel using the information of thetexture buffers inscreen space.

Screen space directional occlusion[4] can be made part of the deferred shading pipeline to give directionality to shadows and interreflections.

Advantages

[edit]

The primary advantage of deferred shading is the decoupling of scene geometry from lighting. Only one geometry pass is required, and each light is only computed for those pixels that it actually affects. This gives the ability to render many lights in a scene without a significant performance hit.[5] There are some other advantages claimed for the approach. These include simpler management of complex lighting resources, ease of managing other complex shader resources, and the simplification of the software rendering pipeline.

Disadvantages

[edit]

One key disadvantage of deferred rendering is the inability to handletransparency within the algorithm, although this problem is a generic one inZ-buffered scenes and it tends to be handled by delaying and sorting the rendering of transparent portions of the scene.[6]Depth peeling can be used to achieveorder-independent transparency in deferred rendering, but at the cost of additional batches and g-buffer size. Modern hardware, supportingDirectX 10 and later, is often capable of performing batches fast enough to maintain interactive frame rates. When order-independent transparency is desired (commonly for consumer applications) deferred shading is no less effective than forward shading using the same technique.

Another serious disadvantage is the difficulty with using multiple materials. It's possible to use many different materials, but it requires more data to be stored in the G-buffer, which is already quite large and takes up a large amount of the memory bandwidth.[7]

One more disadvantage is that, due to separating the lighting stage from the geometric stage, hardwareanti-aliasing does not produce correct results anymore since interpolated subsamples would result in nonsensical position, normal, and tangent attributes. One of the usual techniques to overcome this limitation is usingedge detection on the final image and then applying blur over the edges,[8] however recently more advanced post-process edge-smoothing techniques have been developed, such asMLAA[9][10] (used inKillzone 3 andDragon Age II, among others),FXAA[11] (used inCrysis 2,FEAR 3,Duke Nukem Forever),SRAA,[12]DLAA[13] (used inStar Wars: The Force Unleashed II), and post MSAA (used inCrysis 2 as default anti-aliasing solution). Although it is not an edge-smoothing technique,temporal anti-aliasing (used inHalo: Reach andUnreal Engine) can also help give edges a smoother appearance.[14] DirectX 10 introduced features allowing shaders to access individual samples in multi-sampled render targets (anddepth buffers in version 10.1), giving users of this API access to hardware anti-aliasing in deferred shading. These features also allow them to correctly apply HDR luminance mapping to anti-aliased edges, where in earlier versions of the API any benefit of anti-aliasing may have been lost.

Deferred lighting

[edit]
This section'sfactual accuracy isdisputed. Relevant discussion may be found on thetalk page. Please help to ensure that disputed statements arereliably sourced.(August 2016) (Learn how and when to remove this message)

Deferred lighting (also known as Light Pre-Pass) is a modification of the Deferred Shading.[15] This technique uses three passes, instead of two in deferred shading. On first pass over the scene geometry, only normals and specular spread factor are written to the color buffer. The screen-space, “deferred” pass then accumulates diffuse and specular lighting data separately, so a last pass must be made over the scene geometry to output final image with per-pixel shading. The apparent advantage of deferred lighting is a dramatic reduction in the size of the G-Buffer. The obvious cost is the need to render the scene geometry twice instead of once. An additional cost is that the deferred pass in deferred lighting must output diffuse and specular irradiance separately, whereas the deferred pass in deferred shading need only output a single combined radiance value.

Due to reduction of the size of the G-buffer this technique can partially overcome one serious disadvantage of the deferred shading - multiple materials. Another problem that can be solved isMSAA. Deferred lighting can be used with MSAA on DirectX 9 hardware.[citation needed]

Deferred lighting in commercial games

[edit]

Use of the technique has increased in video games because of the control it enables in terms of using a large amount of dynamic lights and reducing the complexity of required shader instructions. Some examples of games using deferred lighting are:

Deferred shading in commercial games

[edit]

In comparison to deferred lighting, this technique is not very popular[citation needed] due to high memory size and bandwidth requirements, especially on seventh generation consoles where graphic memory size and bandwidth are limited and often bottlenecks.

Game engines featuring deferred shading or rendering techniques

[edit]

History

[edit]

The idea of deferred shading was originally introduced byMichael Deering and his colleagues in a paper[3] published in 1988 titledThe triangle processor and normal vector shader: a VLSI system for high performance graphics. Although the paper never uses the word "deferred", a key concept is introduced; each pixel is shaded only once after depth resolution. Deferred shading as we know it today, using G-buffers, was introduced in a paper by Saito and Takahashi in 1990,[57] although they too do not use the word "deferred". The first deferred shaded video game wasShrek, anXbox launch title shipped in 2001.[58] Around 2004, implementations on commodity graphics hardware started to appear.[59] The technique later gained popularity for applications such asvideo games, finally becoming mainstream around 2008 to 2010.[60]

References

[edit]
  1. ^Hargreaves, Shawn; Harris, Mark (2004)."6800 Leagues Under the Sea: Deferred Shading"(PDF).Nvidia.Archived(PDF) from the original on November 22, 2009. RetrievedJanuary 6, 2021.
  2. ^"Forward Rendering vs. Deferred Rendering". October 28, 2013.
  3. ^abDeering, Michael; Stephanie Winner; Bic Schediwy; Chris Duffy; Neil Hunt (1988). "The triangle processor and normal vector shader: A VLSI system for high performance graphics".ACM SIGGRAPH Computer Graphics.22 (4):21–30.doi:10.1145/378456.378468.
  4. ^O'Donnell, Yuriy (July 18, 2011)."Deferred Screen Space Directional Occlusion".kayru.org.Archived from the original on October 22, 2012.
  5. ^Kayi, Celal Cansin."Deferred Rendering in XNA 4"(PDF).Linnaeus University.Archived(PDF) from the original on August 13, 2013. RetrievedJanuary 6, 2021.
  6. ^"SDK 9.51 – Featured Code Samples".Nvidia. January 17, 2007.Archived from the original on March 8, 2005. RetrievedMarch 28, 2007.
  7. ^Engel, Wolfgang (March 16, 2008)."Light Pre-Pass Renderer".Diary of a Graphics Programmer.Archived from the original on April 7, 2008. RetrievedJanuary 6, 2021.
  8. ^"Deferred shading tutorial"(PDF). Pontifical Catholic University of Rio de Janeiro. Archived fromthe original(PDF) on March 6, 2009. RetrievedFebruary 14, 2008.
  9. ^"MLAA: Efficiently Moving Antialiasing from the GPU to the CPU"(PDF).Intel. RetrievedDecember 2, 2018.
  10. ^"Morphological antialiasing and topological reconstruction"(PDF).Gustave Eiffel University.Archived(PDF) from the original on April 3, 2012. RetrievedJanuary 6, 2021.
  11. ^"Archived copy"(PDF). Archived fromthe original(PDF) on November 25, 2011. RetrievedNovember 7, 2011.{{cite web}}: CS1 maint: archived copy as title (link)
  12. ^Chajdas, Matthäus G.; McGuire, Morgan; Luebke, David (February 1, 2011)."Subpixel Reconstruction Antialiasing".Nvidia.Archived from the original on January 27, 2011. RetrievedJanuary 6, 2021.
  13. ^Andreev, Dmitry (2011)."Anti-Aliasing from a Different Perspective".and.intercon.ru.Archived from the original on April 4, 2011. RetrievedJanuary 6, 2021.
  14. ^Andreev, Dmitry (March 4, 2011)."Anti-Aliasing from a Different Perspective (GDC 2011 Extended Slides)".and.intercon.ru.Archived from the original on April 5, 2011. RetrievedJanuary 6, 2021.
  15. ^"Real-Time Rendering · Deferred lighting approaches".realtimerendering.com. June 2, 2009.
  16. ^"Assassin's Creed III: The Redesigned Anvil Engine".Game Informer.Archived from the original on March 30, 2012.
  17. ^"BioShock Infinite development is PS3 focused and uses Uncharted 2 tech".blorge.com. Archived fromthe original on October 3, 2011.
  18. ^Chetan Jags (July 18, 2023)."BlackMesa XenEngine: Part 4 – Lighting & Shadows".chetanjags.wordpress.com. RetrievedSeptember 18, 2023.
  19. ^"Tech Interview: Crackdown 2".Eurogamer.net. June 26, 2010.
  20. ^guest11b095 (May 14, 2009)."A Bit More Deferred Cry Engine3".slideshare.net.{{cite web}}: CS1 maint: numeric names: authors list (link)
  21. ^"Dead Space by Electronic Arts". NVIDIA. RetrievedFebruary 14, 2008.
  22. ^"Face-Off: Dead Space 2".Eurogamer. RetrievedFebruary 1, 2010.
  23. ^"Face-Off: Dead Space 3".Eurogamer. February 18, 2013. RetrievedFebruary 18, 2013.
  24. ^"Google Translate".google.com.
  25. ^"GregaMan, Manage Blog".capcom-unity.com.
  26. ^"Normals".Imgur.
  27. ^"Tech Interview: Halo: Reach".Eurogamer.net. December 11, 2010.
  28. ^ab"Tech Analysis: Metal Gear Solid 5's FOX Engine".Eurogamer.net. April 5, 2013.
  29. ^"Archived copy"(PDF). Archived fromthe original(PDF) on September 15, 2011. RetrievedJuly 12, 2011.{{cite web}}: CS1 maint: archived copy as title (link)
  30. ^"The Making of Shift 2 Unleashed Article • Page 2 • Eurogamer.net".Eurogamer.net. May 14, 2011.
  31. ^"StarCraft II Effects & techniques"(PDF). AMD. RetrievedJuly 9, 2012.
  32. ^"CGSociety Maintenance".cgsociety.org. Archived fromthe original on April 2, 2015. RetrievedJuly 12, 2011.
  33. ^"Deferred Rendering « PlatinumGames Inc".platinumgames.com. Archived fromthe original on November 27, 2010.
  34. ^"Ghost of Tsushima Analysis: A PS4 Graphics Powerhouse".gamingbolt.com.
  35. ^Silard Šimon."Frictional Games interview".playsomnia.com.
  36. ^DICE (March 8, 2011)."SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3".slideshare.net.
  37. ^"Valve Developer Wiki - Dota 2". RetrievedApril 10, 2012.
  38. ^"Archived copy"(PDF). Archived fromthe original(PDF) on July 11, 2011. RetrievedJuly 12, 2011.{{cite web}}: CS1 maint: archived copy as title (link)
  39. ^Miner Wars 2081
  40. ^"Tech Interview: Metro 2033 Interview • Page 2 • Eurogamer.net".Eurogamer.net. February 25, 2010.
  41. ^"History - Electric Sheep Games". RetrievedApril 14, 2011.
  42. ^Shishkovtsov, Oles (March 7, 2005)."GPU Gems 2: Chapter 9. Deferred Shading in S.T.A.L.K.E.R".Nvidia. RetrievedFebruary 2, 2011.
  43. ^"Deferred shading in Tabula Rasa". NVIDIA. Archived fromthe original on February 3, 2009. RetrievedFebruary 14, 2008.
  44. ^"Steam Users' Forums - View Single Post - Taking the Physx load off the CPU..."steampowered.com.
  45. ^"Steam Users' Forums - View Single Post - Trine 2 rendering information - anti-aliasing, overheating, stereo, input lag, etc".steampowered.com.
  46. ^"CryENGINE 3 Specifications". Crytek GmbH. Archived fromthe original on March 27, 2009. RetrievedMarch 27, 2009.
  47. ^"Lighting you up in Battlefield 3".DICE. March 3, 2011. Archived fromthe original(PDF) on August 25, 2011. RetrievedSeptember 15, 2011.
  48. ^"GameStart – Feature List". Archived fromthe original on December 2, 2011.
  49. ^"Infinity Development Journal – Deferred Lighting". I-Novae Studios. April 3, 2009. Archived fromthe original on January 26, 2013. RetrievedJanuary 26, 2011.
  50. ^"BUILD: Deferred rendering".MCV. February 26, 2009. RetrievedApril 8, 2015.
  51. ^"Torque 3D Development - Advanced Lighting (deferred lighting hybrid)". March 3, 2009. RetrievedJuly 2, 2015.
  52. ^Vosburgh, Ethan (September 9, 2010)."Unity 3 Feature Preview – Deferred Rendering". Unity Technologies. RetrievedJanuary 26, 2011.
  53. ^"Unreal Engine 4 - Rendering Overview". Epic Games. RetrievedJune 6, 2015.
  54. ^"Vision Engine 8.2 Brings 3D Technologies Cross-Platform". October 10, 2011. Archived fromthe original on November 16, 2012. RetrievedApril 8, 2015.
  55. ^"The Graphics Technology of Fallout 4".Bethesda Softworks. November 4, 2015. RetrievedApril 24, 2020.
  56. ^"raylib [shaders] example - deferred rendering".Raylib community, Justin Andreas Lacoste. October 31, 2023. RetrievedJanuary 1, 2024.
  57. ^Saito, Takafumi; Tokiichiro Takahashi (1990). "Comprehensible rendering of 3-D shapes".ACM SIGGRAPH Computer Graphics.24 (4):197–206.doi:10.1145/97880.97901.
  58. ^Geldreich, Rich."GDC 2004 Presentation on Deferred Lighting and Shading". Archived fromthe original on March 11, 2014. RetrievedAugust 24, 2013.
  59. ^"Deferred Shading"(PDF). NVIDIA. RetrievedMarch 28, 2007.
  60. ^Klint, Josh."Deferred Rendering in Leadwerks Engine"(PDF). Leadwerks. Archived fromthe original(PDF) on December 9, 2008.
Vector graphics
2D graphics
2.5D
3D graphics
Concepts
Graphics software
Algorithms
Retrieved from "https://en.wikipedia.org/w/index.php?title=Deferred_shading&oldid=1323569090"
Category:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp