SlideShare a Scribd company logo
Game Developer Conference 2011
                                The Technology Behind the
                                  DirectX 11 Unreal Engine
                                        "Samaritan" Demo

        Martin Mittring             Bryan Dudash
    Senior Graphics Architect   Developer Technology
Martin.Mittring@EpicGames.com   bdudash@nvidia.com
        Epic Games, Inc.              NVIDIA
Overview
• About
• Real-time demo



• Technical Part:
    –   Tessellation (NVIDIA)
    –   Hair
    –   Deferred + MSAA
    –   Subsurface Scattering
    –   Reflections
    –   Depth of Field
Demo Goals
• Ready for GDC 2011
• Real-time on High-end PC (off the shelf hardware)
• Engine improvements:
  – Add Direct3D 11 support in Unreal Engine 3
  – Implement features needed for next-gen quality
• Research:
  – New hardware features like Tessellation
  – Advanced render techniques
  – Content creation / workflow

                                                     3
Storyboard to define the scope




            => Near shots, faces, hair, harsh lighting, rain
                                                           4
Derived Technology needs
Direct3D 11
• Tessellation (NVIDIA)
Filmic look
• Quality
Harsh lighting, night scene
• Dynamic Shadows
Rain
• Reflections
• Particles
• Animated water surface
• Wet material shading
                                    5
Derived Technology needs
Close ups
• Depth of Field
• Facial expressions

Short scalp hair and beard
• Hair
• Simple animation
• Rather simple shading

Coat
  ”Realistic and Interactive Clothing in Epic
  Games Samaritan Demo Using NVIDIA
  APEX” Thursday 4:30- 5:30 Room 110,
  North Hall
                                                6
Video / Real-time demo
Rendering
  Tessellation
  Hair
  Deferred + MSAA
  Subsurface Scattering
  Reflections
  Depth of Field




                          8
Rendering
  Tessellation
  Hair
  Deferred + MSAA
  Subsurface Scattering
  Reflections
  Depth of Field




                          9
Short Hair / Beard
• Considered many methods
  [Tariq08] [Neulander98] [Assarson09] [Nguyen06] [Neulander01]

• Ended up with camera aligned triangle strips
  •   Reuse of existing code (e.g. mesh skinning)
  •   Reuse of existing art pipeline
  •   Move Vertices in the Vertex Shader (VS)




      VS “code” to move the vertices         Before VS      After VS
                                                                       10
Hair creation
• Generate very thin triangle strips in 3ds Max (Plug-in “Hair Farm”)
• ~5000 splines -> ~16000 triangles
• Texture contains 36 individual hairs




               Hair and head mesh in 3ds Max         Texture
                                                                  11
Rendering hair
• How to shade the pixel?
  •   Alpha Test / clip -> Problems with Aliasing
  •   Alpha Blend -> Problems with Sorting, fogging, Depth of Field
  •   Alpha To Coverage (A2C) -> Problems with many layers
  •   Order Independent Transparency [Gruen10] -> Too many layers?

• Our choice:
  •   Render to MSAA buffer
      -> Depth for DOF/Fog/Shadow receiving
  •   Stick to binary occlusion (per MSAA sample)
  •   SSAA (Alpha Test per MSAA sample)
      -> Anti-aliasing for individual hairs

                                                                      12
SSAA




4x MSAA                      4x MSAA
per pixel clip (AlphaTest)   per sample clip (SSAA)

                                                      13 /35
Rendering
  Tessellation
  Hair
  Deferred + MSAA
  Subsurface Scattering
  Reflections
  Depth of Field




                          14
Deferred Rendering [Hargreaves04]
• UnrealEngine 3 is primarily a forward renderer
• Geometry detail * MSAA * Complex shaders * Many lights
  -> too slow in forward, too many shader permutations
• Added more GBuffer properties
   – Albedo + Specular color, Specular Power
   – Spec + Diffuse normal (Wet material is 2 layered)
   – Subsurface scattering
• Some forward rendering remains (skin, hair and translucency)
Anti-Aliasing
• 4x MSAA for forward rendering
• Deferred rendering requires special attention
• Per fragment shading only where needed:
   1.   Clear stencil, Set stencil write
   2.   Pass 1:
         if heuristic(depth/normal) do discard
         otherwise shade per pixel
   3.   Activate stencil test
                                      MSAA per pixel        MSAA per fragment
   4.   Pass 2:
         shade per fragment




                                       Deferred shadows (notice the bright halo)   16
Rendering
  Tessellation
  Hair
  Deferred + MSAA
  Subsurface Scattering
  Reflections
  Depth of Field




                          17
Human skin Subsurface Scattering (SSS)
•   Important effect to render believable faces in dynamic lighting
•   Many skin layers contribute to the final look
•   Human eye is trained to recognize details in faces
•   Human skin is a special case that allows approximations




     No SSS              SSS only            With SSS
                                                                 18
Screen Space Subsurface Scattering
               (SSSSS)
• Idea is to gather lighting contributions in screen space
  [Mikkelsen10] [Jimenez09]
• Gather 16 samples in a disc, randomize per pixel and in time
• Artist can define SSS color and world space scatter radius
• Takes Depth and Normal input into account
• Hides shadow sampling artifacts
• Doesn’t work with ear




                                16 samples
                16 samples      per pixel randomized
                                                            19
Rendering
  Hair
  Deferred + MSAA
  Subsurface Scattering
  Reflections
  Depth of Field




                          20
Image Based Lighting (IBL)
• To compute incoming light at given position and direction
• How it works?
   – Function that maps position and direction to an image point (5D->2D)
   – Image with HDR content representing all incoming light
• Complex lighting
• Blurry reflections
• Diffuse lighting




                                                                       21
Cubemaps
                •   only far reflections




                Planar reflection
                •   fixed camera position
                •   fixed reflection plane
                •   good for dynamic ground reflection
… [Buerger07]
                “Billboard reflections”
                •   Many textured quads (billboards)
                •   Placement like any other static object
                •   Can move/rotate/scale dynamically
                •   No limitations on the reflecting surface


                                                          22
One Billboard reflection
• Each billboard is textured (Color and Alpha for Opacity)
• Ray / quad intersection is simple math
    – Ray start position: surface point we want to shade
    – Ray direction: reflected eye vector




Notice the reflection on the right

                                                           23
Glossy reflections
• Isotropic reflections




• Anisotropic “lengthy” reflections




                                      24
Many Billboard reflections
• Many Billboard can occlude each other
• Iterate through all billboards
• Store n (~3) nearest hits (z, color, opacity)
• Composite n layers with alpha blending
• TextureArrays to index a texture in the shader
   -> Same size and format




                                                   25
Reflection Shadows

                Without shadows                       With shadows




Notice that without shadows light leaks through the building


                                                               26
Static Reflection Shadows
• Ray-casting a distance field
  –   Jump over empty areas
  –   Stored in a volume texture
  –   Distance also allows arbitrary blurred shadows
  –   Half resolution (bilateral up-sampling) [Shopf09] [Tomasi98]

  Shadows visualized (brightened sky)              Distance Field visualized




                                                                               27
Dynamic Reflection Shadows
• Crucial for grounding objects
• Method assumes single plane
  reflection (ground)
• We generate an image from the
  reflected eye position (similar to
  planar reflections), storing depth     Without
• Final mask is generated by rendering
  quads for each occluding Texel
• The quad size is computed from the
  stored depth


                                         With
                                                   28
Point Light Reflections
• Phong or Blinn-Phong specular wasn’t giving the look we wanted
• Anyone have a “wet street BRDF” ?
• We added a new specular type
   –   More “lengthy”
   –   Shadowed like Billboard reflections
   –   Energy preserving [CodeItNow09]
   –   Distance attenuated but not distance bound

        Photo reference                Real-time (without rain drops)




                                                                        29
Rendering
  Tessellation
  Hair
  Deferred + MSAA
  Subsurface Scattering
  Reflections
  Depth of Field




                          30
What is Bokeh?
• Bokeh is the name of the shape that can be seen in photos
  or movies when objects are out of focus.
• Contributes to the filmic look
• Shape depends on the camera and lens
• Many Depth of Field algorithms blur objects out of focus
  without the desired shape. [Lefohn10]

   Photo Reference           Different Bokeh shapes (real-time)




                                                                  31
Bokeh Depth of Field
     Render a Bokeh textured quad for each pixel
     [LostPlanetD3D10][3DMark]
•     Quad size and opacity depends on the Circle of Confusion (CoC) radius
•     CoC radius is computed from the pixel depth
•     Accumulate pixel color and opacity weighted by the Bokeh texture
•     Splitting the content into layers avoids occlusion artifacts




    Foreground (blurred)   In Focus (Full Resolution)   Background (blurred)
                                                                           32
Bokeh Depth of Field Rendering
Scatter pass (Geometry Shader):
 • Setup viewports to render to background/foreground layers
 • For each pixel:
       – Compute the Circle of Confusion (CoC) radius
       – Compute viewport (foreground / backgound)
       – Setup a quad with the Bokeh texture
                                                               1
         (RGB: Bokeh*scene color, A: Bokeh)
       – Render quad with additive blending                    2
Resolve pass:
                                                        Render Target with
   • Reconstruct the layer color (RGB divided by A)       two viewports
   • Blend layers by the accumulated occlusion
     (background, in focus, foreground)
                                                                       33
Bokeh Depth of Field Optimizations
• Vertex / Triangle count:
   •   Input image is the half resolution scene (Color + Depth)
• Fill rate:
   – Input image is the half resolution scene (Color + Depth)
   – Output image is half resolution and recombined later with full resolution
   – For each 2x2 input block:
     depending on heuristic (CoC radius, color and depth difference),
     spawn 1 or 4 quads (GS)
                                          Red: 4 quads
                                          Green: 1 quad




                                                                          34
Bokeh Depth of Field: Translucency
• Problem: Fog / particles / smoke / lens flares
• Make some effects not affected by Depth of Field
   – Artists can specify which material
   – Composed after/without Depth of Field
• New Shader graph node
   – To give artist control (fade out or blend to blurry version)




                                                                    35
References 1/2
•   [Buerger07] GPU Rendering of Secondary Effects
    http://wwwcg.in.tum.de/Research/data/Publications/vmv07.pdf
•   [Tariq08] Real-Time Hair Rendering on the GPU
    http://developer.nvidia.com/object/siggraph-2008-hair.html
•   [Lauritzen10] Deferred Rendering for Current and Future Rendering Pipelines
    http://visual-computing.intel-research.net/art/publications/deferred_rendering/
•   [CodeItNow09] Energy Conservation In Games
    http://www.rorydriscoll.com/2009/01/25/energy-conservation-in-games
•   [Lefohn10] Advanced Real-Time Depth of Field Techniques
    https://graphics.stanford.edu/wikis/cs448s-
    10/FrontPage?action=AttachFile&do=get&target=CS448s-10-10-depthOfFieldForWeb.pdf
•   [Jimenez09] Screen-Space Perceptual Rendering of Human Skin
    http://giga.cps.unizar.es/~diegog/ficheros/pdf_papers/TAP_Jimenez_LR.pdf
•   [Shopf09] Mixed Resolution Rendering
•   http://developer.amd.com/gpu_assets/ShopfMixedResolutionRendering.pdf
•   [Tomasi98] Bilateral Filtering for Gray and Color Images
•   http://www.cs.duke.edu/~tomasi/papers/tomasi/tomasiIccv98.pdf
•   [Hargreaves] Deferred Shading
•   http://read.pudn.com/downloads160/sourcecode/game/724029/DeferredShading.pdf
                                                                                       36 /35
References 2/2
•   [Gruen10] OIT and Indirect Illumination using DX11 Linked Lists
    http://developer.amd.com/gpu_assets/OIT%20and%20Indirect%20Illumination%20using%20DX11
    %20Linked%20Lists_forweb.ppsx
•   Robust Multiple Specular Reflections and Refractions
    http://http.developer.nvidia.com/GPUGems3/gpugems3_ch17.html
•   [Neulander01] Hair Rendering (Ivan Neulander, Rhythm & Hues Studios)
    http://www.rhythm.com/~ivan/hairRender.html
•   [Nguyen06] GPU Gems2: Chapter 23. Hair Animation and Rendering in the Nalu Demo
    http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter23.html
•   [Assarson09] Siggraph 2009: GPU Primitives-Case Study: Hair Rendering
    http://s09.idav.ucdavis.edu/talks/07-Ulf-GPU-Prims-and-Hair-course-slides.pdf
•   [Neulander98] Rendering Generalized Cylinders with Paintstrokes
    http://www.rhythm.com/~ivan/pdfs/gi98.pdf
•   [LostPlanetD3D10] Lost Planet D3D10 Parallel Rendering
    http://meshula.net/wordpress/?p=124
•   [3DMark] 3DMark11 Whitepaper
    http://www.3dmark.com/wp-content/uploads/2010/12/3DMark11_Whitepaper.pdf
•   [Buerger07] GPU Rendering of Secondary Effects
    http://wwwcg.in.tum.de/Research/data/Publications/vmv07.pdf
•   [Mikkelsen10] Cross Bilateral Filters for Skin Shading
     http://jbit.net/~sparky/subsurf/cbf_skin.pdf

                                                                                         37
Thanks
• Our partner: NVIDIA
• NVIDIA:
     Johnny Costello, Bryan Dudash, Jon Jansen, Ignacio Llamas,
     John McDonald, David Schoemehl
• Entire Epic team
• Everyone that contributed to the demo
• Epic:
     Daniel Wright, Andrew Scheidecker, Jordan Walker



                                                                  38
The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo
Questions?
 • Is this a game?
     No. This is just a technology demo.
 • Is that in UnrealEngine 3?
     These features are available now to UE3 licensees
     and will be in the March UDK.




”Realistic and Interactive Clothing in Epic Games Samaritan Demo
Using NVIDIA APEX” Thursday 4:30- 5:30 Room 110, North Hall
NVIDIA @ GDC 2011

CAN’T GET ENOUGH? MORE WAYS TO LEARN:
  NVIDIA GAME TECHNOLOGY THEATER
  Fri, March 4th @ NVIDIA Booth
  Open to all attendees. Featuring talks and demos from leading
  developers at game studios and more, covering a wide range of topics
  on the latest in GPU game technology.

  MORE DEVELOPER TOOLS & RESOURCES
  Available online 24/7 @ developer.nvidia.com
                                                                   NVIDIA Booth
                                                                  South Hall #1802
                                                             Details on schedule and to
                                                          download copies of presentations
                                                                         visit
                                                              www.nvidia.com/gdc2011
Bonus Slide
• Barely documented but very useful:
   – HLSL Semantic SV_SampleIndex
     Used as input causes the shader to run per MSAA sample.
     Can be used in texture.Load(float2(u,v),SampleIndex)
     or EvaluateAttributeAtSample(Interpolator,SampleIndex)
   – HLSL Semantic SV_Coverage
     uint, MSAA bit mask, PS input and output

• How to index a texture in the shader?
   –   2D Texture Atlas -> Size limits, Border and Precision issues
   –   Sample array (D3D9/10/11) -> Only for constant index / unroll able loops
   –   Dynamic branching -> Slow
   –   Texture array (D3D10/11) -> Same size and format, CPU update performance?

• Energy preserving Specular images (material varies Glossiness):




   Specular tweaked for glossy areas   Specular tweaked for dull areas   Energy preserving
                                                                                             42

More Related Content

PDF
Rendering AAA-Quality Characters of Project A1
PPTX
Calibrating Lighting and Materials in Far Cry 3
PPTX
Around the World in 80 Shaders
PPT
Paris Master Class 2011 - 05 Post-Processing Pipeline
PPT
Paris Master Class 2011 - 07 Dynamic Global Illumination
PPT
Paris Master Class 2011 - 01 Deferred Lighting, MSAA
PPT
Star Ocean 4 - Flexible Shader Managment and Post-processing
PPTX
High Dynamic Range color grading and display in Frostbite
Rendering AAA-Quality Characters of Project A1
Calibrating Lighting and Materials in Far Cry 3
Around the World in 80 Shaders
Paris Master Class 2011 - 05 Post-Processing Pipeline
Paris Master Class 2011 - 07 Dynamic Global Illumination
Paris Master Class 2011 - 01 Deferred Lighting, MSAA
Star Ocean 4 - Flexible Shader Managment and Post-processing
High Dynamic Range color grading and display in Frostbite

What's hot (20)

PPTX
A new Post-Processing Pipeline
PPT
SIGGRAPH 2010 - Style and Gameplay in the Mirror's Edge
PPT
Crysis Next-Gen Effects (GDC 2008)
PPTX
Deferred shading
PPT
Light prepass
PPTX
DirectX 11 Rendering in Battlefield 3
PDF
Deferred Rendering in Killzone 2
PDF
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
PDF
Deferred rendering in Dying Light
PPTX
Massive Point Light Soft Shadows
PPTX
Photogrammetry and Star Wars Battlefront
PPTX
A Bizarre Way to do Real-Time Lighting
PPT
Destruction Masking in Frostbite 2 using Volume Distance Fields
PPT
A Bit More Deferred Cry Engine3
PDF
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
PDF
Volumetric Lighting for Many Lights in Lords of the Fallen
PPTX
565 Alpha Chun-Fu Chao
PDF
Killzone Shadow Fall Demo Postmortem
PPTX
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
PPTX
More Performance! Five Rendering Ideas From Battlefield 3 and Need For Speed:...
A new Post-Processing Pipeline
SIGGRAPH 2010 - Style and Gameplay in the Mirror's Edge
Crysis Next-Gen Effects (GDC 2008)
Deferred shading
Light prepass
DirectX 11 Rendering in Battlefield 3
Deferred Rendering in Killzone 2
An introduction to Realistic Ocean Rendering through FFT - Fabio Suriano - Co...
Deferred rendering in Dying Light
Massive Point Light Soft Shadows
Photogrammetry and Star Wars Battlefront
A Bizarre Way to do Real-Time Lighting
Destruction Masking in Frostbite 2 using Volume Distance Fields
A Bit More Deferred Cry Engine3
The Rendering Technology of 'Lords of the Fallen' (Game Connection Europe 2014)
Volumetric Lighting for Many Lights in Lords of the Fallen
565 Alpha Chun-Fu Chao
Killzone Shadow Fall Demo Postmortem
Five Rendering Ideas from Battlefield 3 & Need For Speed: The Run
More Performance! Five Rendering Ideas From Battlefield 3 and Need For Speed:...
Ad

Viewers also liked (15)

PDF
Game software development trends presentation
PPT
SIGGRAPH 2012: NVIDIA OpenGL for 2012
PDF
Recipes for Optical Effect System Design - Real-time Rendering of Physically...
PDF
Making Your Bokeh Fascinating - Real-time Rendering of Physically Based Opti...
PPTX
Kiteの少年と学ぶUE4.11の新シェーダ
PPT
모바일 게임 최적화
PDF
Lenses - Real-time Rendering of Physically Based Optical Effect in Theory an...
PDF
Subtle Anamorphic Lens Effects - Real-time Rendering of Physically Based Opt...
PPTX
[CGWCC2016] UE4でリギング
PPTX
물리 기반 셰이더의 이해
PDF
언리얼 엔진 4용 커스텀 천 재질
PPTX
Substanceのちょっといい話
PDF
[Ndc13]Ndc 2013 김동석:UDK로 물리기반 셰이더 만들기
PPTX
Moving Frostbite to Physically Based Rendering
PDF
Custom fabric shader for unreal engine 4
Game software development trends presentation
SIGGRAPH 2012: NVIDIA OpenGL for 2012
Recipes for Optical Effect System Design - Real-time Rendering of Physically...
Making Your Bokeh Fascinating - Real-time Rendering of Physically Based Opti...
Kiteの少年と学ぶUE4.11の新シェーダ
모바일 게임 최적화
Lenses - Real-time Rendering of Physically Based Optical Effect in Theory an...
Subtle Anamorphic Lens Effects - Real-time Rendering of Physically Based Opt...
[CGWCC2016] UE4でリギング
물리 기반 셰이더의 이해
언리얼 엔진 4용 커스텀 천 재질
Substanceのちょっといい話
[Ndc13]Ndc 2013 김동석:UDK로 물리기반 셰이더 만들기
Moving Frostbite to Physically Based Rendering
Custom fabric shader for unreal engine 4
Ad

Similar to The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo (20)

PDF
Deferred shading
PPT
lesson 2.pptlesson 2.pptlesson 2.pptlesson 2.pptlesson 2.ppt
PDF
NVIDIA effects GDC09
PPTX
Real-time lightmap baking
PPTX
Technologies Used In Graphics Rendering
PPT
CS 354 Shadows
PPTX
4,000 Adams at 90 Frames Per Second | Yi Fei Boon
PDF
【Unite Tokyo 2018】『崩壊3rd』開発者が語るアニメ風レンダリングの極意
PPTX
Develop2012 deferred sanchez_stachowiak
PPTX
Making a game with Molehill: Zombie Tycoon
PPT
Felwyrld Tech
PDF
Rendering basics
PPTX
Unite Berlin 2018 - Book of the Dead Optimizing Performance for High End Cons...
PDF
Finding+Harmodfhbdfbdbny+in_Chen_Zhou.pdf
PPTX
computergrapgichiddensurfacemethodes.pptx
PDF
「原神」におけるコンソールプラットフォーム開発
PPTX
A Scalable Real-Time Many-Shadowed-Light Rendering System
PPT
A Practical and Robust Bump-mapping Technique for Today’s GPUs (slides)
PPT
CS 354 Shadows (cont'd) and Scene Graphs
PPTX
Developing Next-Generation Games with Stage3D (Molehill)
Deferred shading
lesson 2.pptlesson 2.pptlesson 2.pptlesson 2.pptlesson 2.ppt
NVIDIA effects GDC09
Real-time lightmap baking
Technologies Used In Graphics Rendering
CS 354 Shadows
4,000 Adams at 90 Frames Per Second | Yi Fei Boon
【Unite Tokyo 2018】『崩壊3rd』開発者が語るアニメ風レンダリングの極意
Develop2012 deferred sanchez_stachowiak
Making a game with Molehill: Zombie Tycoon
Felwyrld Tech
Rendering basics
Unite Berlin 2018 - Book of the Dead Optimizing Performance for High End Cons...
Finding+Harmodfhbdfbdbny+in_Chen_Zhou.pdf
computergrapgichiddensurfacemethodes.pptx
「原神」におけるコンソールプラットフォーム開発
A Scalable Real-Time Many-Shadowed-Light Rendering System
A Practical and Robust Bump-mapping Technique for Today’s GPUs (slides)
CS 354 Shadows (cont'd) and Scene Graphs
Developing Next-Generation Games with Stage3D (Molehill)

More from drandom (16)

PDF
노동진 Mega splatting
PDF
The Settler 7- 포스트모템
PDF
최우성 구별하여 사용하면 좋은 프로젝트 관련용어
PDF
이은석 마비노기 영웅전 포스트모템 2부 (kgc 버전)
PDF
이은석 마비노기 영웅전 포스트모템 1부 (kgc 버전)
PDF
김항기 시나리오 기반 온라인 게임 서버 부하 테스트 기술
PDF
Mmorpg 사례로 본 만족도와 재접속
PDF
그럴듯한 랜덤 생성 컨텐츠 만들기
PDF
Angel cunado_The Terrain Of KUF2
PDF
오토데스크 게임수퍼유저투어 part 2. 제작 파이프라인 현대화
PDF
오토데스크 게임 수퍼유저투어 part1.human ik 및 motionbuilder를 이용한 ea sports game 제작사례
PDF
Landscape 구축, Unreal Engine 3 의 차세대 terrain system
PDF
MMORPG게임엔진의 현재와미래 by 장언일
PDF
Gdc2011 direct x 11 rendering in battlefield 3
PDF
Lighting you up in Battlefield 3
PDF
From Content for Next Generation Games by Chris Wells
노동진 Mega splatting
The Settler 7- 포스트모템
최우성 구별하여 사용하면 좋은 프로젝트 관련용어
이은석 마비노기 영웅전 포스트모템 2부 (kgc 버전)
이은석 마비노기 영웅전 포스트모템 1부 (kgc 버전)
김항기 시나리오 기반 온라인 게임 서버 부하 테스트 기술
Mmorpg 사례로 본 만족도와 재접속
그럴듯한 랜덤 생성 컨텐츠 만들기
Angel cunado_The Terrain Of KUF2
오토데스크 게임수퍼유저투어 part 2. 제작 파이프라인 현대화
오토데스크 게임 수퍼유저투어 part1.human ik 및 motionbuilder를 이용한 ea sports game 제작사례
Landscape 구축, Unreal Engine 3 의 차세대 terrain system
MMORPG게임엔진의 현재와미래 by 장언일
Gdc2011 direct x 11 rendering in battlefield 3
Lighting you up in Battlefield 3
From Content for Next Generation Games by Chris Wells

Recently uploaded (20)

PDF
GREEN BUILDING MATERIALS FOR SUISTAINABLE ARCHITECTURE AND BUILDING STUDY
PDF
Urban Design Final Project-Context
PPT
EGWHermeneuticsffgggggggggggggggggggggggggggggggg.ppt
PDF
Facade & Landscape Lighting Techniques and Trends.pptx.pdf
PDF
BRANDBOOK-Presidential Award Scheme-Kenya-2023
PPTX
mahatma gandhi bus terminal in india Case Study.pptx
PPTX
12. Community Pharmacy and How to organize it
PPTX
Fundamental Principles of Visual Graphic Design.pptx
PPTX
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
PDF
Emailing DDDX-MBCaEiB.pdf DDD_Europe_2022_Intro_to_Context_Mapping_pdf-165590...
PPTX
areprosthodontics and orthodonticsa text.pptx
PPT
unit 1 ppt.ppthhhhhhhhhhhhhhhhhhhhhhhhhh
PDF
YOW2022-BNE-MinimalViableArchitecture.pdf
PPTX
Implications Existing phase plan and its feasibility.pptx
PPTX
AC-Unit1.pptx CRYPTOGRAPHIC NNNNFOR ALL
PPTX
YV PROFILE PROJECTS PROFILE PRES. DESIGN
PDF
Phone away, tabs closed: No multitasking
PPTX
Special finishes, classification and types, explanation
DOCX
The story of the first moon landing.docx
PPTX
BSCS lesson 3.pptxnbbjbb mnbkjbkbbkbbkjb
GREEN BUILDING MATERIALS FOR SUISTAINABLE ARCHITECTURE AND BUILDING STUDY
Urban Design Final Project-Context
EGWHermeneuticsffgggggggggggggggggggggggggggggggg.ppt
Facade & Landscape Lighting Techniques and Trends.pptx.pdf
BRANDBOOK-Presidential Award Scheme-Kenya-2023
mahatma gandhi bus terminal in india Case Study.pptx
12. Community Pharmacy and How to organize it
Fundamental Principles of Visual Graphic Design.pptx
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
Emailing DDDX-MBCaEiB.pdf DDD_Europe_2022_Intro_to_Context_Mapping_pdf-165590...
areprosthodontics and orthodonticsa text.pptx
unit 1 ppt.ppthhhhhhhhhhhhhhhhhhhhhhhhhh
YOW2022-BNE-MinimalViableArchitecture.pdf
Implications Existing phase plan and its feasibility.pptx
AC-Unit1.pptx CRYPTOGRAPHIC NNNNFOR ALL
YV PROFILE PROJECTS PROFILE PRES. DESIGN
Phone away, tabs closed: No multitasking
Special finishes, classification and types, explanation
The story of the first moon landing.docx
BSCS lesson 3.pptxnbbjbb mnbkjbkbbkbbkjb

The Technology Behind the DirectX 11 Unreal Engine"Samaritan" Demo

  • 1. Game Developer Conference 2011 The Technology Behind the DirectX 11 Unreal Engine "Samaritan" Demo Martin Mittring Bryan Dudash Senior Graphics Architect Developer Technology Martin.Mittring@EpicGames.com bdudash@nvidia.com Epic Games, Inc. NVIDIA
  • 2. Overview • About • Real-time demo • Technical Part: – Tessellation (NVIDIA) – Hair – Deferred + MSAA – Subsurface Scattering – Reflections – Depth of Field
  • 3. Demo Goals • Ready for GDC 2011 • Real-time on High-end PC (off the shelf hardware) • Engine improvements: – Add Direct3D 11 support in Unreal Engine 3 – Implement features needed for next-gen quality • Research: – New hardware features like Tessellation – Advanced render techniques – Content creation / workflow 3
  • 4. Storyboard to define the scope => Near shots, faces, hair, harsh lighting, rain 4
  • 5. Derived Technology needs Direct3D 11 • Tessellation (NVIDIA) Filmic look • Quality Harsh lighting, night scene • Dynamic Shadows Rain • Reflections • Particles • Animated water surface • Wet material shading 5
  • 6. Derived Technology needs Close ups • Depth of Field • Facial expressions Short scalp hair and beard • Hair • Simple animation • Rather simple shading Coat ”Realistic and Interactive Clothing in Epic Games Samaritan Demo Using NVIDIA APEX” Thursday 4:30- 5:30 Room 110, North Hall 6
  • 8. Rendering Tessellation Hair Deferred + MSAA Subsurface Scattering Reflections Depth of Field 8
  • 9. Rendering Tessellation Hair Deferred + MSAA Subsurface Scattering Reflections Depth of Field 9
  • 10. Short Hair / Beard • Considered many methods [Tariq08] [Neulander98] [Assarson09] [Nguyen06] [Neulander01] • Ended up with camera aligned triangle strips • Reuse of existing code (e.g. mesh skinning) • Reuse of existing art pipeline • Move Vertices in the Vertex Shader (VS) VS “code” to move the vertices Before VS After VS 10
  • 11. Hair creation • Generate very thin triangle strips in 3ds Max (Plug-in “Hair Farm”) • ~5000 splines -> ~16000 triangles • Texture contains 36 individual hairs Hair and head mesh in 3ds Max Texture 11
  • 12. Rendering hair • How to shade the pixel? • Alpha Test / clip -> Problems with Aliasing • Alpha Blend -> Problems with Sorting, fogging, Depth of Field • Alpha To Coverage (A2C) -> Problems with many layers • Order Independent Transparency [Gruen10] -> Too many layers? • Our choice: • Render to MSAA buffer -> Depth for DOF/Fog/Shadow receiving • Stick to binary occlusion (per MSAA sample) • SSAA (Alpha Test per MSAA sample) -> Anti-aliasing for individual hairs 12
  • 13. SSAA 4x MSAA 4x MSAA per pixel clip (AlphaTest) per sample clip (SSAA) 13 /35
  • 14. Rendering Tessellation Hair Deferred + MSAA Subsurface Scattering Reflections Depth of Field 14
  • 15. Deferred Rendering [Hargreaves04] • UnrealEngine 3 is primarily a forward renderer • Geometry detail * MSAA * Complex shaders * Many lights -> too slow in forward, too many shader permutations • Added more GBuffer properties – Albedo + Specular color, Specular Power – Spec + Diffuse normal (Wet material is 2 layered) – Subsurface scattering • Some forward rendering remains (skin, hair and translucency)
  • 16. Anti-Aliasing • 4x MSAA for forward rendering • Deferred rendering requires special attention • Per fragment shading only where needed: 1. Clear stencil, Set stencil write 2. Pass 1: if heuristic(depth/normal) do discard otherwise shade per pixel 3. Activate stencil test MSAA per pixel MSAA per fragment 4. Pass 2: shade per fragment Deferred shadows (notice the bright halo) 16
  • 17. Rendering Tessellation Hair Deferred + MSAA Subsurface Scattering Reflections Depth of Field 17
  • 18. Human skin Subsurface Scattering (SSS) • Important effect to render believable faces in dynamic lighting • Many skin layers contribute to the final look • Human eye is trained to recognize details in faces • Human skin is a special case that allows approximations No SSS SSS only With SSS 18
  • 19. Screen Space Subsurface Scattering (SSSSS) • Idea is to gather lighting contributions in screen space [Mikkelsen10] [Jimenez09] • Gather 16 samples in a disc, randomize per pixel and in time • Artist can define SSS color and world space scatter radius • Takes Depth and Normal input into account • Hides shadow sampling artifacts • Doesn’t work with ear 16 samples 16 samples per pixel randomized 19
  • 20. Rendering Hair Deferred + MSAA Subsurface Scattering Reflections Depth of Field 20
  • 21. Image Based Lighting (IBL) • To compute incoming light at given position and direction • How it works? – Function that maps position and direction to an image point (5D->2D) – Image with HDR content representing all incoming light • Complex lighting • Blurry reflections • Diffuse lighting 21
  • 22. Cubemaps • only far reflections Planar reflection • fixed camera position • fixed reflection plane • good for dynamic ground reflection … [Buerger07] “Billboard reflections” • Many textured quads (billboards) • Placement like any other static object • Can move/rotate/scale dynamically • No limitations on the reflecting surface 22
  • 23. One Billboard reflection • Each billboard is textured (Color and Alpha for Opacity) • Ray / quad intersection is simple math – Ray start position: surface point we want to shade – Ray direction: reflected eye vector Notice the reflection on the right 23
  • 24. Glossy reflections • Isotropic reflections • Anisotropic “lengthy” reflections 24
  • 25. Many Billboard reflections • Many Billboard can occlude each other • Iterate through all billboards • Store n (~3) nearest hits (z, color, opacity) • Composite n layers with alpha blending • TextureArrays to index a texture in the shader -> Same size and format 25
  • 26. Reflection Shadows Without shadows With shadows Notice that without shadows light leaks through the building 26
  • 27. Static Reflection Shadows • Ray-casting a distance field – Jump over empty areas – Stored in a volume texture – Distance also allows arbitrary blurred shadows – Half resolution (bilateral up-sampling) [Shopf09] [Tomasi98] Shadows visualized (brightened sky) Distance Field visualized 27
  • 28. Dynamic Reflection Shadows • Crucial for grounding objects • Method assumes single plane reflection (ground) • We generate an image from the reflected eye position (similar to planar reflections), storing depth Without • Final mask is generated by rendering quads for each occluding Texel • The quad size is computed from the stored depth With 28
  • 29. Point Light Reflections • Phong or Blinn-Phong specular wasn’t giving the look we wanted • Anyone have a “wet street BRDF” ? • We added a new specular type – More “lengthy” – Shadowed like Billboard reflections – Energy preserving [CodeItNow09] – Distance attenuated but not distance bound Photo reference Real-time (without rain drops) 29
  • 30. Rendering Tessellation Hair Deferred + MSAA Subsurface Scattering Reflections Depth of Field 30
  • 31. What is Bokeh? • Bokeh is the name of the shape that can be seen in photos or movies when objects are out of focus. • Contributes to the filmic look • Shape depends on the camera and lens • Many Depth of Field algorithms blur objects out of focus without the desired shape. [Lefohn10] Photo Reference Different Bokeh shapes (real-time) 31
  • 32. Bokeh Depth of Field Render a Bokeh textured quad for each pixel [LostPlanetD3D10][3DMark] • Quad size and opacity depends on the Circle of Confusion (CoC) radius • CoC radius is computed from the pixel depth • Accumulate pixel color and opacity weighted by the Bokeh texture • Splitting the content into layers avoids occlusion artifacts Foreground (blurred) In Focus (Full Resolution) Background (blurred) 32
  • 33. Bokeh Depth of Field Rendering Scatter pass (Geometry Shader): • Setup viewports to render to background/foreground layers • For each pixel: – Compute the Circle of Confusion (CoC) radius – Compute viewport (foreground / backgound) – Setup a quad with the Bokeh texture 1 (RGB: Bokeh*scene color, A: Bokeh) – Render quad with additive blending 2 Resolve pass: Render Target with • Reconstruct the layer color (RGB divided by A) two viewports • Blend layers by the accumulated occlusion (background, in focus, foreground) 33
  • 34. Bokeh Depth of Field Optimizations • Vertex / Triangle count: • Input image is the half resolution scene (Color + Depth) • Fill rate: – Input image is the half resolution scene (Color + Depth) – Output image is half resolution and recombined later with full resolution – For each 2x2 input block: depending on heuristic (CoC radius, color and depth difference), spawn 1 or 4 quads (GS) Red: 4 quads Green: 1 quad 34
  • 35. Bokeh Depth of Field: Translucency • Problem: Fog / particles / smoke / lens flares • Make some effects not affected by Depth of Field – Artists can specify which material – Composed after/without Depth of Field • New Shader graph node – To give artist control (fade out or blend to blurry version) 35
  • 36. References 1/2 • [Buerger07] GPU Rendering of Secondary Effects http://wwwcg.in.tum.de/Research/data/Publications/vmv07.pdf • [Tariq08] Real-Time Hair Rendering on the GPU http://developer.nvidia.com/object/siggraph-2008-hair.html • [Lauritzen10] Deferred Rendering for Current and Future Rendering Pipelines http://visual-computing.intel-research.net/art/publications/deferred_rendering/ • [CodeItNow09] Energy Conservation In Games http://www.rorydriscoll.com/2009/01/25/energy-conservation-in-games • [Lefohn10] Advanced Real-Time Depth of Field Techniques https://graphics.stanford.edu/wikis/cs448s- 10/FrontPage?action=AttachFile&do=get&target=CS448s-10-10-depthOfFieldForWeb.pdf • [Jimenez09] Screen-Space Perceptual Rendering of Human Skin http://giga.cps.unizar.es/~diegog/ficheros/pdf_papers/TAP_Jimenez_LR.pdf • [Shopf09] Mixed Resolution Rendering • http://developer.amd.com/gpu_assets/ShopfMixedResolutionRendering.pdf • [Tomasi98] Bilateral Filtering for Gray and Color Images • http://www.cs.duke.edu/~tomasi/papers/tomasi/tomasiIccv98.pdf • [Hargreaves] Deferred Shading • http://read.pudn.com/downloads160/sourcecode/game/724029/DeferredShading.pdf 36 /35
  • 37. References 2/2 • [Gruen10] OIT and Indirect Illumination using DX11 Linked Lists http://developer.amd.com/gpu_assets/OIT%20and%20Indirect%20Illumination%20using%20DX11 %20Linked%20Lists_forweb.ppsx • Robust Multiple Specular Reflections and Refractions http://http.developer.nvidia.com/GPUGems3/gpugems3_ch17.html • [Neulander01] Hair Rendering (Ivan Neulander, Rhythm & Hues Studios) http://www.rhythm.com/~ivan/hairRender.html • [Nguyen06] GPU Gems2: Chapter 23. Hair Animation and Rendering in the Nalu Demo http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter23.html • [Assarson09] Siggraph 2009: GPU Primitives-Case Study: Hair Rendering http://s09.idav.ucdavis.edu/talks/07-Ulf-GPU-Prims-and-Hair-course-slides.pdf • [Neulander98] Rendering Generalized Cylinders with Paintstrokes http://www.rhythm.com/~ivan/pdfs/gi98.pdf • [LostPlanetD3D10] Lost Planet D3D10 Parallel Rendering http://meshula.net/wordpress/?p=124 • [3DMark] 3DMark11 Whitepaper http://www.3dmark.com/wp-content/uploads/2010/12/3DMark11_Whitepaper.pdf • [Buerger07] GPU Rendering of Secondary Effects http://wwwcg.in.tum.de/Research/data/Publications/vmv07.pdf • [Mikkelsen10] Cross Bilateral Filters for Skin Shading http://jbit.net/~sparky/subsurf/cbf_skin.pdf 37
  • 38. Thanks • Our partner: NVIDIA • NVIDIA: Johnny Costello, Bryan Dudash, Jon Jansen, Ignacio Llamas, John McDonald, David Schoemehl • Entire Epic team • Everyone that contributed to the demo • Epic: Daniel Wright, Andrew Scheidecker, Jordan Walker 38
  • 40. Questions? • Is this a game? No. This is just a technology demo. • Is that in UnrealEngine 3? These features are available now to UE3 licensees and will be in the March UDK. ”Realistic and Interactive Clothing in Epic Games Samaritan Demo Using NVIDIA APEX” Thursday 4:30- 5:30 Room 110, North Hall
  • 41. NVIDIA @ GDC 2011 CAN’T GET ENOUGH? MORE WAYS TO LEARN: NVIDIA GAME TECHNOLOGY THEATER Fri, March 4th @ NVIDIA Booth Open to all attendees. Featuring talks and demos from leading developers at game studios and more, covering a wide range of topics on the latest in GPU game technology. MORE DEVELOPER TOOLS & RESOURCES Available online 24/7 @ developer.nvidia.com NVIDIA Booth South Hall #1802 Details on schedule and to download copies of presentations visit www.nvidia.com/gdc2011
  • 42. Bonus Slide • Barely documented but very useful: – HLSL Semantic SV_SampleIndex Used as input causes the shader to run per MSAA sample. Can be used in texture.Load(float2(u,v),SampleIndex) or EvaluateAttributeAtSample(Interpolator,SampleIndex) – HLSL Semantic SV_Coverage uint, MSAA bit mask, PS input and output • How to index a texture in the shader? – 2D Texture Atlas -> Size limits, Border and Precision issues – Sample array (D3D9/10/11) -> Only for constant index / unroll able loops – Dynamic branching -> Slow – Texture array (D3D10/11) -> Same size and format, CPU update performance? • Energy preserving Specular images (material varies Glossiness): Specular tweaked for glossy areas Specular tweaked for dull areas Energy preserving 42