SlideShare ist ein Scribd-Unternehmen logo
1 von 68
Shadows & Decals:
D3D10 techniques from
      Frostbite


     Johan Andersson
     Daniel Johansson
Single-pass Stable Cascaded
Bounding Box Shadow Maps

        (SSCBBSM?!)




       Johan Andersson
Overview

    Basics
»
    Shadowmap rendering
»
    Stable shadows
»
    Scene rendering
»
    Conclusions
»



» (Q&A after 2nd part)
Cascaded Shadow Maps

                                                                                                                um
                                                                                                           frust
                                                                                                      View
                                                                          Shadow 3


                                              Shadow 2


                Shadow 1

                                                                                                             Slice
                    Slice 1                     Slice 2                     Slice 3                         without
                                                                                                            shadow
                              Split plane 1




                                                          Split plane 2




                                                                                      Split plane 3
 Near plane




                                                                                                                      Far plane
              View direction
Practical Split Scheme




From: Parallel-Split Shadow Maps on Programmable GPUs [1]


for (uint sliceIt = 0; sliceIt < sliceCount; sliceIt++)
{
    float f = float(sliceIt+1)/sliceCount;
    float logDistance = nearPlane * pow(shadowDistance/nearPlane, f);
    float uniformDistance = nearPlane + (shadowDistance - nearPlane) * f;
    splitDistances[sliceIt] = lerp(uniformDistance, logDistance, weight);
}
Traditional Shadowmap
Rendering
» Render world n times to n
  shadowmaps
                          Objects interesecting multiple slices are
                   
                          rendered multiple times




                                                                                                                                  4
                                                                                                                                  w
                                                                                                                             do
                                                                                                                              a
                                                                                                                           Sh
                                                                                                                                                    m
                                                                                                                                                u
                                                                                                                                           frust
                                                                                                                                      View




                                                                                             3
                                                                                             w
                                                                                        do
                                                                                         a
                                                                                      Sh
                                                        2
                                                        w
                                                   do
                                                    a
                                                 Sh
                      1
                   w
                 do
          a
       Sh




                                                                                                                                        Slice
                       Slice 1                              Slice 2                              Slice 3                               without 4
                                                                                                                                            Slice
                                                                                                                                       shadow
                                 Split plane 1




                                                                      Split plane 2




                                                                                                           Split plane 3
   Near plane




                                                                                                                                                    Far plane
                View direction
Traditional Shadowmap
Rendering
» More/larger objects or more slices
  = more overhead
» Both a CPU & GPU issue
       CPU: draw call / state overhead
     
      GPU: primarily extra vertices & primitives




» Want to reduce CPU overhead
       More objects
     
      More slices = higher resolution
      Longer shadow view distance
DX10 Single-pass
Shadowmap Rendering
» Single draw call outputs to multiple
  slices
       Shadowmap is a texture array
     
      Depth stencil array view with multiple slices
      Geometry shader selects output slice with
       SV_RenderTargetArrayIndex


» No CPU overhead
         With many objects intersecting multiple
     
         frustums


» Multiple implementations possible
Shadowmap texture
array view
» Creation:
  D3D10_DEPTH_STENCIL_VIEW_DESC viewDesc;
  viewDesc.Format = DXGI_FORMAT_D24_UNORM_S8_UINT;
  viewDesc.ViewDimension = D3DALL_DSV_DIMENSION_TEXTURE2DARRAY;
  viewDesc.Texture2DArray.FirstArraySlice = 0;
  viewDesc.Texture2DArray.ArraySize = sliceCount;
  viewDesc.Texture2DArray.MipSlice = 0;
  device->CreateDepthStencilView(shadowmapTexture, &viewDesc, &view);




» SampleCmp only supported on 10.1
  for texture arrays
        10.0 fallback: Manual PCF-filtering
      
       Or vendor-specific APIs, ask your IHV rep.
SV_RenderTargetArrayIndex

» Geometry shader output value

» Selects which texture slice each
  primitive should be rendered to

» Available from D3D 10.0
Geometry shader cloning
#define SLICE_COUNT 4
float4x4 sliceViewProjMatrices[SLICE_COUNT];

struct GsInput
{
    float4 worldPos : SV_POSITION;
    float2 texCoord : TEXCOORD0;
};
struct PsInput
{
    float4 hPos : SV_POSITION;
    float2 texCoord : TEXCOORD0;
    uint sliceIndex : SV_RenderTargetArrayIndex;
};

[maxvertexcount(SLICE_COUNT*3)]
void main(triangle GsInput input[3],
          inout TriangleStream<PsInput> stream)
{
    for (int sliceIt = firstSlice; sliceIt != lastSlice; sliceIt++)
    {
        PsInput output;
        output.sliceIndex = sliceIt;
        for( int v = 0; v < 3; v++ )
        {
            output.hPos = mul(input[v].worldPos, sliceViewProjMatrices[sliceIt]);
            output.texCoord = input[v].texCoord;
            stream.Append(output);
        }
        stream.RestartStrip();
    }
}
Geometry shader cloning

» Benefits
         Single shadowmap draw call per object
     
         even if object intersects multiple slices


» Drawbacks
       GS data amplification can be expensive
     
      Not compatible with instancing
      Multiple GS permutations for # of slices
      Fixed max number of slices in shader
Instancing GS method
» Render multiple instances for objects
  that intersects multiple slices
         Combine with ordinary instancing that you
     
         were already doing


» Store slice index per object instance
       In vertex buffer, cbuffer or tbuffer
     
      Together with the rest of the per-instance
       values (world transform, colors, etc)


» Geometry shader only used for
  selecting output slice
Instancing geometry shader
struct GsInput
{
    float4 hPos : SV_POSITION;
    float2 texCoord : TEXCOORD0;
    uint sliceIndex : TEXCOORD1;   // from VS vbuffer or tbuffer (tbuffer faster)
};

struct PsInput
{
    float4 hPos : SV_POSITION;
    float2 texCoord : TEXCOORD0;
    uint sliceIndex : SV_RenderTargetArrayIndex;
};

[maxvertexcount(3)]
void main(triangle GsInput input[3],
          inout TriangleStream<PsInput> stream)
{
    PsInput output;
    output.sliceIndex = input[v].sliceIndex;
    output.hPos = input[v].hPos;
    output.texCoord = input[v].texCoord;
    stream.Append(output);
}
Instancing geometry shader

» Benefits
       Works together with ordinary instancing
     
      Single draw call per shadow object type!
      Arbitrary number of slices
      Fixed CPU cost for shadowmap rendering



» Drawbacks
       Increased shadowmap GPU time
     
          Radeon 4870x2: ~1% (0.7–1.3%)
          Geforce 280: ~5% (1.9–18%)
      Have to write/generate GS permutation for
       every VS output combination
Shadow Flickering

» Causes
       Lack of high-quality filtering (>2x pcf)
     
      Moving light source
      Moving player view
      Rotating player view
      Changing field-of-view




» With a few limitations, we can fix
  these for static geometry
Flickering movie
Non-flickering movie
Stabilization (1/2)
» Orthographic views
      Scene-independent
    
     Make rotationally invariant = Fixed size




                                                                                                                                           ustum
                                                                                                                                      fr
                                                                                                                                 View




                                                                                                  3
                                                                                                  w
                                                                                             do
                                                                                              a
                                                                                           Sh
                                                             2
                                                             w
                                                        do
                                                         a
                                                      Sh
                           1
                        w
                      do
               a
            Sh




                                                                                                                                 Slice
                            Slice 1                              Slice 2                              Slice 3                   without
                                                                                                                                shadow
                                      Split plane 1




                                                                           Split plane 2




                                                                                                                Split plane 3
        Near plane




                                                                                                                                                   Far plane
                     View direction
Stabilization (1/2)
» Orthographic views
      Scene-independent
    
     Make rotationally invariant = Fixed size




                                                                                                                 3
                                                                                                             ow
                                                                                                                                                    m




                                                                                                            ad
                                                                                                                                             frustu




                                                                                                        sh
                                                                                                                                        View




                                                                                                     3 le
                                                                                                      b
                                                                                                   ta
                                                                                                 Sw
                                                                         2




                                                                                                do
                                                                      ow




                                                                                                 a
                                                                    ad




                                                                                              Sh
                                                               sh
                                                                2
                                                                e
                                                             bl
                                1



                                                           aw
                                                         dto
                            ow




                                                        aS
                           ad




                                                     Sh
                          1
                        sh
                        w
                   o
                 le
                bd
              aa
            Sth




                                                                                                                                        Slice
                           Slice 1                                  Slice 2                                  Slice 3                   without
                                                                                                                                       shadow
                                     Split plane 1




                                                                              Split plane 2




                                                                                                                       Split plane 3
        Near plane




                                                                                                                                                        Far plane
                     View direction
Stabilization (2/2)

» Round light-space translation to
  even texel increments

     float f = viewSize / (float)shadowmapSize;
     translation.x = round(translation.x/f) * f;
     translation.y = round(translation.y/f) * f;




» Still flickers on FOV changes &
  light rotation
         So don’t change them 
     
Scene rendering
» Slice selection methods
          Slice plane (viewport depth)
     




                                                                                                                            m
                                                                                                                        u
                                                                                                                   frust
                                                                                                              View
                                                                                  Shadow 3


                                                      Shadow 2


                        Shadow 1

                                                                                                                     Slice
                            Slice 1                     Slice 2                     Slice 3                         without
                                                                                                                    shadow
                                      Split plane 1




                                                                  Split plane 2




                                                                                              Split plane 3
         Near plane




                                                                                                                                Far plane
                      View direction
Scene rendering
» Slice selection methods
       Slice plane (viewport depth)
     
      Bounding sphere (Killzone 2 [2])


                                                                                                                                m
                                                                                                                            u
                                                                                                                       frust
                                                                                                                  View
                                                                                       Shadow 3
                                                                                   Shadow 3

                                                      Shadow 2
                                                       Shadow 2
                         Shadow 1
                        Shadow 1

                                                                                                                         Slice
                            Slice 1                      Slice 2                     Slice 3                            without
                                                                                                                        shadow
                                      Split plane 1




                                                                   Split plane 2




                                                                                                  Split plane 3
         Near plane




                                                                                                                                    Far plane
                      View direction
Scene rendering
» Slice selection methods
       Slice plane (viewport depth)
     
      Bounding sphere (Killzone 2 [2])
      Bounding box (BFBC / Frostbite)
                                                                                                                                m
                                                                                                                            u
                                                                                                                       frust
                                                                                                                  View
                                                                                       Shadow 3
                                                                                       Shadow 3
                                                                                   Shadow 3

                                                      Shadow 2
                                                       Shadow 2
                                                       Shadow 2
                         Shadow 1
                         Shadow 1
                        Shadow 1

                                                                                                                         Slice
                            Slice 1                      Slice 2                     Slice 3                            without
                                                                                                                        shadow
                                      Split plane 1




                                                                   Split plane 2




                                                                                                  Split plane 3
         Near plane




                                                                                                                                    Far plane
                      View direction
Slice plane selection
Bounding sphere selection
Bounding box selection
Shadowmap texture
array sampling shader
float sampleShadowmapCascadedBox3Pcf2x2(
    SamplerComparisonState s,
    Texture2DArray tex,
    float4 t0,    // t0.xyz = [-0.5,+0.5]   t0.w == 0
    float4 t1,    // t1.xyz = [-0.5,+0.5]   t1.w == 1
    float4 t2)    // t2.xyz = [-0.5,+0.5]   t2.w == 2
{
    bool b0 = all(abs(t0.xyz) < 0.5f);
    bool b1 = all(abs(t1.xyz) < 0.5f);
    bool b2 = all(abs(t2.xy) < 0.5f);

    float4 t;
    t = b2 ? t2 : 0;
    t = b1 ? t1 : t;
    t = b0 ? t0 : t;
    t.xyz += 0.5f;

    float r = tex.SampleCmpLevelZero(s, t.xyw, t.z).r;
    r = (t.z < 1) ? r : 1.0;
    return r;
}
Conclusions

» Stabilization reduces flicker
         With certain limitations
     

» Bounding box slice selection
  maximizes shadowmap utilization
       Higher effective resolution
     
      Longer effective shadow view distance
      Good fit with stabilization

» Fewer draw calls by rendering to
  texture array with instancing
       Constant CPU rendering cost regardless of
     
       number of shadow casting objecs & slices
      At a small GPU cost
Decal generation using
the Geometry Shader and
       Stream Out



      Daniel Johansson
What is a Decal?
Overview

    Problem description
»
    Solution
»
    Implementation
»
    Results
»
    Future work
»

» Q & A for both parts
Problem description

» Decals were using physics collision
  meshes
       Caused major visual artifacts
     
      We need to use the actual visual meshes

» Minimize delay between impact
  and visual feedback
         Important in fast paced FPS games
     
Problem description

» Already solved on consoles using
  shared memory (Xbox360) and
  SPU jobs (PS3)
» No good solution existed for PC as
  of yet
       Duplicating meshes in CPU memory
     
      Copying to CPU via staging resource
Solution

» Use the Geometry shader to cull
  and extract decal geometry
         From mesh vertex buffers in GPU RAM
     

» Stream out the decal geometry to
  a vertex ring buffer
» Use clip planes to clip the decals
  when drawing
Solution

» Allows us to transfer UV-sets from
  the source mesh to the decal
» Takes less vertex buffer memory
  than older method
         Due to use of clipplanes instead of manual
     
         clipping
Implementation – UML
Implementation –
Geometry Shader
» GS pass ”filters” out intersecting
  geometry from the input mesh
         Also performs a number of data
     
         transforms
» GS pass parameters
         Decal transform, spawn time, position in
     
         vertex buffer etc
» Let’s take a closer look at the GS
  code!
Geometry Shader – in/output
Transform mesh geometry to world space
Setup plane equation for the triangle
Discard if angle to decal is too big
Transform triangle into decal object space
Calculate triangle bbox
Do a sphere/bbox test to discard triangle
Code break

» __asm { int 3; }
Setup decal
quad vertices
Setup clip
planes from
decal quad
edges (cookie
cutter)
Calculate
tangents and
binormals
Transform
tangents /
normals from
world to mesh
object space
Calculate
texture
coordinates
(planar
projection)
Transfer mesh
texture coords
to decal
Calculate clip
distances
Append
triangle to
output stream
Geometry Shader
Performance
» Complex GS shader - ~260
  instructions
        Room for optimization
    

» GS draw calls usually around 0.05-
  0.5 ms
        Depending on hardware of course
    

» Per frame capping/buffering used
  to avoid framerate drops
Implementation – Buffer
usage
» One decal vertex buffer used as a
  ring buffer
» One index buffer – dynamically
  updated each frame
» Decal transforms stored on the
  CPU (for proximity queries)
Implementation –
Queries
» Grouped together with each decal
  generation draw call
» Result is used to ”commit” decals
  into their decal sets or discard
  them if no triangles were written
Implementation –
Queries
» Issues
      Buffer overflows
    
     Syncronization

» No way of knowing where in the
  buffer vertices were written
        Only have NumPrimitivesWritten and
    
        PrimitiveStorageNeeded
Implementation –
Queries
» Solution: When an overflow is
  detected the buffer is wrapped
  around.
         If any decals are partially written they are
     
         discarded and redispatched.
Results
Decal movie
Skinned decal movie
Future Work

» Rewrite to make use of
  DrawAuto()
» Experiment more with material
  masking possibilites
» Port to DX11 Compute Shader
» Implement GPU-based ray/mesh
  intersection tests
» SLI/Crossfire
Questions?




                             Contact:
                    johan.andersson@dice.se
                    daniel.johansson@dice.se
igetyourfail.com
References
» [1] Zhang et al. ”Parallel-Split Shadow Maps on
  Programmable GPUsquot;. GPU Gems 3.
» [2] Valient, Michael. quot;Stable Rendering of
  Cascaded Shadow Mapsquot;. ShaderX6

Weitere ähnliche Inhalte

Was ist angesagt?

Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14
Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14
Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14AMD Developer Central
 
Hable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr LightingHable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr Lightingozlael ozlael
 
Rendering Tech of Space Marine
Rendering Tech of Space MarineRendering Tech of Space Marine
Rendering Tech of Space MarinePope Kim
 
Lighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallLighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallGuerrilla
 
Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360VIKAS SINGH BHADOURIA
 
The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2Guerrilla
 
Taking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next GenerationTaking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next GenerationGuerrilla
 
Triangle Visibility buffer
Triangle Visibility bufferTriangle Visibility buffer
Triangle Visibility bufferWolfgang Engel
 
Crysis Next-Gen Effects (GDC 2008)
Crysis Next-Gen Effects (GDC 2008)Crysis Next-Gen Effects (GDC 2008)
Crysis Next-Gen Effects (GDC 2008)Tiago Sousa
 
Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2Philip Hammer
 
Low-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil PerssonLow-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil PerssonAMD Developer Central
 
Optimizing the Graphics Pipeline with Compute, GDC 2016
Optimizing the Graphics Pipeline with Compute, GDC 2016Optimizing the Graphics Pipeline with Compute, GDC 2016
Optimizing the Graphics Pipeline with Compute, GDC 2016Graham Wihlidal
 
Past, Present and Future Challenges of Global Illumination in Games
Past, Present and Future Challenges of Global Illumination in GamesPast, Present and Future Challenges of Global Illumination in Games
Past, Present and Future Challenges of Global Illumination in GamesColin Barré-Brisebois
 
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open ProblemsHPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open ProblemsElectronic Arts / DICE
 
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect AndromedaElectronic Arts / DICE
 
Parallel Futures of a Game Engine
Parallel Futures of a Game EngineParallel Futures of a Game Engine
Parallel Futures of a Game EngineJohan Andersson
 

Was ist angesagt? (20)

Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3Shiny PC Graphics in Battlefield 3
Shiny PC Graphics in Battlefield 3
 
Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14
Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14
Vertex Shader Tricks by Bill Bilodeau - AMD at GDC14
 
Hable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr LightingHable John Uncharted2 Hdr Lighting
Hable John Uncharted2 Hdr Lighting
 
DirectX 11 Rendering in Battlefield 3
DirectX 11 Rendering in Battlefield 3DirectX 11 Rendering in Battlefield 3
DirectX 11 Rendering in Battlefield 3
 
Rendering Tech of Space Marine
Rendering Tech of Space MarineRendering Tech of Space Marine
Rendering Tech of Space Marine
 
Lighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow FallLighting of Killzone: Shadow Fall
Lighting of Killzone: Shadow Fall
 
Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360Next generation graphics programming on xbox 360
Next generation graphics programming on xbox 360
 
The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2The Rendering Technology of Killzone 2
The Rendering Technology of Killzone 2
 
Taking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next GenerationTaking Killzone Shadow Fall Image Quality Into The Next Generation
Taking Killzone Shadow Fall Image Quality Into The Next Generation
 
Light prepass
Light prepassLight prepass
Light prepass
 
Lighting you up in Battlefield 3
Lighting you up in Battlefield 3Lighting you up in Battlefield 3
Lighting you up in Battlefield 3
 
Triangle Visibility buffer
Triangle Visibility bufferTriangle Visibility buffer
Triangle Visibility buffer
 
Crysis Next-Gen Effects (GDC 2008)
Crysis Next-Gen Effects (GDC 2008)Crysis Next-Gen Effects (GDC 2008)
Crysis Next-Gen Effects (GDC 2008)
 
Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2Bindless Deferred Decals in The Surge 2
Bindless Deferred Decals in The Surge 2
 
Low-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil PerssonLow-level Shader Optimization for Next-Gen and DX11 by Emil Persson
Low-level Shader Optimization for Next-Gen and DX11 by Emil Persson
 
Optimizing the Graphics Pipeline with Compute, GDC 2016
Optimizing the Graphics Pipeline with Compute, GDC 2016Optimizing the Graphics Pipeline with Compute, GDC 2016
Optimizing the Graphics Pipeline with Compute, GDC 2016
 
Past, Present and Future Challenges of Global Illumination in Games
Past, Present and Future Challenges of Global Illumination in GamesPast, Present and Future Challenges of Global Illumination in Games
Past, Present and Future Challenges of Global Illumination in Games
 
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open ProblemsHPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
HPG 2018 - Game Ray Tracing: State-of-the-Art and Open Problems
 
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
4K Checkerboard in Battlefield 1 and Mass Effect Andromeda
 
Parallel Futures of a Game Engine
Parallel Futures of a Game EngineParallel Futures of a Game Engine
Parallel Futures of a Game Engine
 

Andere mochten auch

Building the Battlefield AI Experience
Building the Battlefield AI ExperienceBuilding the Battlefield AI Experience
Building the Battlefield AI ExperienceElectronic Arts / DICE
 
Battlelog - Building scalable web sites with tight game integration
Battlelog - Building scalable web sites with tight game integrationBattlelog - Building scalable web sites with tight game integration
Battlelog - Building scalable web sites with tight game integrationElectronic Arts / DICE
 
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3Electronic Arts / DICE
 
How data rules the world: Telemetry in Battlefield Heroes
How data rules the world: Telemetry in Battlefield HeroesHow data rules the world: Telemetry in Battlefield Heroes
How data rules the world: Telemetry in Battlefield HeroesElectronic Arts / DICE
 
Destruction Masking in Frostbite 2 using Volume Distance Fields
Destruction Masking in Frostbite 2 using Volume Distance FieldsDestruction Masking in Frostbite 2 using Volume Distance Fields
Destruction Masking in Frostbite 2 using Volume Distance FieldsElectronic Arts / DICE
 
5 Major Challenges in Interactive Rendering
5 Major Challenges in Interactive Rendering5 Major Challenges in Interactive Rendering
5 Major Challenges in Interactive RenderingElectronic Arts / DICE
 
Stylized Rendering in Battlefield Heroes
Stylized Rendering in Battlefield HeroesStylized Rendering in Battlefield Heroes
Stylized Rendering in Battlefield HeroesElectronic Arts / DICE
 
Level Design Challenges & Solutions - Mirror's Edge
Level Design Challenges & Solutions - Mirror's EdgeLevel Design Challenges & Solutions - Mirror's Edge
Level Design Challenges & Solutions - Mirror's EdgeElectronic Arts / DICE
 
Future Directions for Compute-for-Graphics
Future Directions for Compute-for-GraphicsFuture Directions for Compute-for-Graphics
Future Directions for Compute-for-GraphicsElectronic Arts / DICE
 

Andere mochten auch (14)

Building the Battlefield AI Experience
Building the Battlefield AI ExperienceBuilding the Battlefield AI Experience
Building the Battlefield AI Experience
 
Battlelog - Building scalable web sites with tight game integration
Battlelog - Building scalable web sites with tight game integrationBattlelog - Building scalable web sites with tight game integration
Battlelog - Building scalable web sites with tight game integration
 
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
SPU-Based Deferred Shading in BATTLEFIELD 3 for Playstation 3
 
Bending the Graphics Pipeline
Bending the Graphics PipelineBending the Graphics Pipeline
Bending the Graphics Pipeline
 
A Real-time Radiosity Architecture
A Real-time Radiosity ArchitectureA Real-time Radiosity Architecture
A Real-time Radiosity Architecture
 
How data rules the world: Telemetry in Battlefield Heroes
How data rules the world: Telemetry in Battlefield HeroesHow data rules the world: Telemetry in Battlefield Heroes
How data rules the world: Telemetry in Battlefield Heroes
 
Destruction Masking in Frostbite 2 using Volume Distance Fields
Destruction Masking in Frostbite 2 using Volume Distance FieldsDestruction Masking in Frostbite 2 using Volume Distance Fields
Destruction Masking in Frostbite 2 using Volume Distance Fields
 
5 Major Challenges in Interactive Rendering
5 Major Challenges in Interactive Rendering5 Major Challenges in Interactive Rendering
5 Major Challenges in Interactive Rendering
 
Stylized Rendering in Battlefield Heroes
Stylized Rendering in Battlefield HeroesStylized Rendering in Battlefield Heroes
Stylized Rendering in Battlefield Heroes
 
A Step Towards Data Orientation
A Step Towards Data OrientationA Step Towards Data Orientation
A Step Towards Data Orientation
 
Scope Stack Allocation
Scope Stack AllocationScope Stack Allocation
Scope Stack Allocation
 
Introduction to Data Oriented Design
Introduction to Data Oriented DesignIntroduction to Data Oriented Design
Introduction to Data Oriented Design
 
Level Design Challenges & Solutions - Mirror's Edge
Level Design Challenges & Solutions - Mirror's EdgeLevel Design Challenges & Solutions - Mirror's Edge
Level Design Challenges & Solutions - Mirror's Edge
 
Future Directions for Compute-for-Graphics
Future Directions for Compute-for-GraphicsFuture Directions for Compute-for-Graphics
Future Directions for Compute-for-Graphics
 

Mehr von Johan Andersson

The Rendering Pipeline - Challenges & Next Steps
The Rendering Pipeline - Challenges & Next StepsThe Rendering Pipeline - Challenges & Next Steps
The Rendering Pipeline - Challenges & Next StepsJohan Andersson
 
Parallel Futures of a Game Engine (v2.0)
Parallel Futures of a Game Engine (v2.0)Parallel Futures of a Game Engine (v2.0)
Parallel Futures of a Game Engine (v2.0)Johan Andersson
 
Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)
Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)
Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)Johan Andersson
 
Your Game Needs Direct3D 11, So Get Started Now!
Your Game Needs Direct3D 11, So Get Started Now!Your Game Needs Direct3D 11, So Get Started Now!
Your Game Needs Direct3D 11, So Get Started Now!Johan Andersson
 
Advanced Real-time Post-Processing using GPGPU techniques
Advanced Real-time Post-Processing using GPGPU techniquesAdvanced Real-time Post-Processing using GPGPU techniques
Advanced Real-time Post-Processing using GPGPU techniquesJohan Andersson
 
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...Johan Andersson
 
Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)
Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)
Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)Johan Andersson
 
Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...
Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...
Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...Johan Andersson
 

Mehr von Johan Andersson (9)

The Rendering Pipeline - Challenges & Next Steps
The Rendering Pipeline - Challenges & Next StepsThe Rendering Pipeline - Challenges & Next Steps
The Rendering Pipeline - Challenges & Next Steps
 
Low-level Graphics APIs
Low-level Graphics APIsLow-level Graphics APIs
Low-level Graphics APIs
 
Parallel Futures of a Game Engine (v2.0)
Parallel Futures of a Game Engine (v2.0)Parallel Futures of a Game Engine (v2.0)
Parallel Futures of a Game Engine (v2.0)
 
Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)
Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)
Parallel Graphics in Frostbite - Current & Future (Siggraph 2009)
 
Your Game Needs Direct3D 11, So Get Started Now!
Your Game Needs Direct3D 11, So Get Started Now!Your Game Needs Direct3D 11, So Get Started Now!
Your Game Needs Direct3D 11, So Get Started Now!
 
Advanced Real-time Post-Processing using GPGPU techniques
Advanced Real-time Post-Processing using GPGPU techniquesAdvanced Real-time Post-Processing using GPGPU techniques
Advanced Real-time Post-Processing using GPGPU techniques
 
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
The Intersection of Game Engines & GPUs: Current & Future (Graphics Hardware ...
 
Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)
Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)
Terrain Rendering in Frostbite using Procedural Shader Splatting (Siggraph 2007)
 
Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...
Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...
Frostbite Rendering Architecture and Real-time Procedural Shading & Texturing...
 

Kürzlich hochgeladen

How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?
How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?
How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?kexey39068
 
Triangle Vinyl Record Store, Clermont Florida
Triangle Vinyl Record Store, Clermont FloridaTriangle Vinyl Record Store, Clermont Florida
Triangle Vinyl Record Store, Clermont FloridaGabrielaMiletti
 
SHIVNA SAHITYIKI APRIL JUNE 2024 Magazine
SHIVNA SAHITYIKI APRIL JUNE 2024 MagazineSHIVNA SAHITYIKI APRIL JUNE 2024 Magazine
SHIVNA SAHITYIKI APRIL JUNE 2024 MagazineShivna Prakashan
 
FULL ENJOY - 9953040155 Call Girls in Mahipalpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Mahipalpur | DelhiFULL ENJOY - 9953040155 Call Girls in Mahipalpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Mahipalpur | DelhiMalviyaNagarCallGirl
 
Zagor VČ OP 055 - Oluja nad Haitijem.pdf
Zagor VČ OP 055 - Oluja nad Haitijem.pdfZagor VČ OP 055 - Oluja nad Haitijem.pdf
Zagor VČ OP 055 - Oluja nad Haitijem.pdfStripovizijacom
 
Call Girls in Islamabad | 03070433345 | Call Girl Service
Call Girls in Islamabad | 03070433345 | Call Girl ServiceCall Girls in Islamabad | 03070433345 | Call Girl Service
Call Girls in Islamabad | 03070433345 | Call Girl ServiceAyesha Khan
 
9654467111 Call Girls In Noida Sector 62 Short 1500 Night 6000
9654467111 Call Girls In Noida Sector 62 Short 1500 Night 60009654467111 Call Girls In Noida Sector 62 Short 1500 Night 6000
9654467111 Call Girls In Noida Sector 62 Short 1500 Night 6000Sapana Sha
 
9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr
9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr
9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi NcrSapana Sha
 
FULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | Delhi
FULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | DelhiFULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | Delhi
FULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | DelhiMalviyaNagarCallGirl
 
Russian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts Service
Russian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts ServiceRussian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts Service
Russian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts Servicedoor45step
 
Bobbie goods colorinsssssssssssg book.pdf
Bobbie goods colorinsssssssssssg book.pdfBobbie goods colorinsssssssssssg book.pdf
Bobbie goods colorinsssssssssssg book.pdflunavro0105
 
Indian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts Service
Indian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts ServiceIndian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts Service
Indian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts Servicedoor45step
 
FULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | DelhiFULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | DelhiMalviyaNagarCallGirl
 
Olivia Cox. intertextual references.pptx
Olivia Cox. intertextual references.pptxOlivia Cox. intertextual references.pptx
Olivia Cox. intertextual references.pptxLauraFagan6
 
Laxmi Nagar Call Girls : ☎ 8527673949, Low rate Call Girls
Laxmi Nagar Call Girls : ☎ 8527673949, Low rate Call GirlsLaxmi Nagar Call Girls : ☎ 8527673949, Low rate Call Girls
Laxmi Nagar Call Girls : ☎ 8527673949, Low rate Call Girlsashishs7044
 
Mandi House Call Girls : ☎ 8527673949, Low rate Call Girls
Mandi House Call Girls : ☎ 8527673949, Low rate Call GirlsMandi House Call Girls : ☎ 8527673949, Low rate Call Girls
Mandi House Call Girls : ☎ 8527673949, Low rate Call Girlsashishs7044
 
Strip Zagor Extra 322 - Dva ortaka.pdf
Strip   Zagor Extra 322 - Dva ortaka.pdfStrip   Zagor Extra 322 - Dva ortaka.pdf
Strip Zagor Extra 322 - Dva ortaka.pdfStripovizijacom
 
Russian Call Girls Delhi NCR 9999965857 Call or WhatsApp Anytime
Russian Call Girls Delhi NCR 9999965857 Call or WhatsApp AnytimeRussian Call Girls Delhi NCR 9999965857 Call or WhatsApp Anytime
Russian Call Girls Delhi NCR 9999965857 Call or WhatsApp AnytimeKomal Khan
 
FULL ENJOY - 9953040155 Call Girls in Noida | Delhi
FULL ENJOY - 9953040155 Call Girls in Noida | DelhiFULL ENJOY - 9953040155 Call Girls in Noida | Delhi
FULL ENJOY - 9953040155 Call Girls in Noida | DelhiMalviyaNagarCallGirl
 
FULL ENJOY - 9953040155 Call Girls in Paschim Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Paschim Vihar | DelhiFULL ENJOY - 9953040155 Call Girls in Paschim Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Paschim Vihar | DelhiMalviyaNagarCallGirl
 

Kürzlich hochgeladen (20)

How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?
How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?
How Can You Get Dubai Call Girls +971564860409 Call Girls Dubai?
 
Triangle Vinyl Record Store, Clermont Florida
Triangle Vinyl Record Store, Clermont FloridaTriangle Vinyl Record Store, Clermont Florida
Triangle Vinyl Record Store, Clermont Florida
 
SHIVNA SAHITYIKI APRIL JUNE 2024 Magazine
SHIVNA SAHITYIKI APRIL JUNE 2024 MagazineSHIVNA SAHITYIKI APRIL JUNE 2024 Magazine
SHIVNA SAHITYIKI APRIL JUNE 2024 Magazine
 
FULL ENJOY - 9953040155 Call Girls in Mahipalpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Mahipalpur | DelhiFULL ENJOY - 9953040155 Call Girls in Mahipalpur | Delhi
FULL ENJOY - 9953040155 Call Girls in Mahipalpur | Delhi
 
Zagor VČ OP 055 - Oluja nad Haitijem.pdf
Zagor VČ OP 055 - Oluja nad Haitijem.pdfZagor VČ OP 055 - Oluja nad Haitijem.pdf
Zagor VČ OP 055 - Oluja nad Haitijem.pdf
 
Call Girls in Islamabad | 03070433345 | Call Girl Service
Call Girls in Islamabad | 03070433345 | Call Girl ServiceCall Girls in Islamabad | 03070433345 | Call Girl Service
Call Girls in Islamabad | 03070433345 | Call Girl Service
 
9654467111 Call Girls In Noida Sector 62 Short 1500 Night 6000
9654467111 Call Girls In Noida Sector 62 Short 1500 Night 60009654467111 Call Girls In Noida Sector 62 Short 1500 Night 6000
9654467111 Call Girls In Noida Sector 62 Short 1500 Night 6000
 
9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr
9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr
9654467111 Full Enjoy @24/7 Call Girls In Saket Delhi Ncr
 
FULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | Delhi
FULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | DelhiFULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | Delhi
FULL ENJOY - 9953040155 Call Girls in Laxmi Nagar | Delhi
 
Russian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts Service
Russian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts ServiceRussian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts Service
Russian⚡ Call Girls In Sector 39 Noida✨8375860717⚡Escorts Service
 
Bobbie goods colorinsssssssssssg book.pdf
Bobbie goods colorinsssssssssssg book.pdfBobbie goods colorinsssssssssssg book.pdf
Bobbie goods colorinsssssssssssg book.pdf
 
Indian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts Service
Indian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts ServiceIndian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts Service
Indian High Profile Call Girls In Sector 18 Noida 8375860717 Escorts Service
 
FULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | DelhiFULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Gandhi Vihar | Delhi
 
Olivia Cox. intertextual references.pptx
Olivia Cox. intertextual references.pptxOlivia Cox. intertextual references.pptx
Olivia Cox. intertextual references.pptx
 
Laxmi Nagar Call Girls : ☎ 8527673949, Low rate Call Girls
Laxmi Nagar Call Girls : ☎ 8527673949, Low rate Call GirlsLaxmi Nagar Call Girls : ☎ 8527673949, Low rate Call Girls
Laxmi Nagar Call Girls : ☎ 8527673949, Low rate Call Girls
 
Mandi House Call Girls : ☎ 8527673949, Low rate Call Girls
Mandi House Call Girls : ☎ 8527673949, Low rate Call GirlsMandi House Call Girls : ☎ 8527673949, Low rate Call Girls
Mandi House Call Girls : ☎ 8527673949, Low rate Call Girls
 
Strip Zagor Extra 322 - Dva ortaka.pdf
Strip   Zagor Extra 322 - Dva ortaka.pdfStrip   Zagor Extra 322 - Dva ortaka.pdf
Strip Zagor Extra 322 - Dva ortaka.pdf
 
Russian Call Girls Delhi NCR 9999965857 Call or WhatsApp Anytime
Russian Call Girls Delhi NCR 9999965857 Call or WhatsApp AnytimeRussian Call Girls Delhi NCR 9999965857 Call or WhatsApp Anytime
Russian Call Girls Delhi NCR 9999965857 Call or WhatsApp Anytime
 
FULL ENJOY - 9953040155 Call Girls in Noida | Delhi
FULL ENJOY - 9953040155 Call Girls in Noida | DelhiFULL ENJOY - 9953040155 Call Girls in Noida | Delhi
FULL ENJOY - 9953040155 Call Girls in Noida | Delhi
 
FULL ENJOY - 9953040155 Call Girls in Paschim Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Paschim Vihar | DelhiFULL ENJOY - 9953040155 Call Girls in Paschim Vihar | Delhi
FULL ENJOY - 9953040155 Call Girls in Paschim Vihar | Delhi
 

Shadows & Decals: D3D10 Techniques in Frostbite (GDC'09)

  • 1.
  • 2. Shadows & Decals: D3D10 techniques from Frostbite Johan Andersson Daniel Johansson
  • 3. Single-pass Stable Cascaded Bounding Box Shadow Maps (SSCBBSM?!) Johan Andersson
  • 4. Overview Basics » Shadowmap rendering » Stable shadows » Scene rendering » Conclusions » » (Q&A after 2nd part)
  • 5. Cascaded Shadow Maps um frust View Shadow 3 Shadow 2 Shadow 1 Slice Slice 1 Slice 2 Slice 3 without shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 6. Practical Split Scheme From: Parallel-Split Shadow Maps on Programmable GPUs [1] for (uint sliceIt = 0; sliceIt < sliceCount; sliceIt++) { float f = float(sliceIt+1)/sliceCount; float logDistance = nearPlane * pow(shadowDistance/nearPlane, f); float uniformDistance = nearPlane + (shadowDistance - nearPlane) * f; splitDistances[sliceIt] = lerp(uniformDistance, logDistance, weight); }
  • 7. Traditional Shadowmap Rendering » Render world n times to n shadowmaps Objects interesecting multiple slices are  rendered multiple times 4 w do a Sh m u frust View 3 w do a Sh 2 w do a Sh 1 w do a Sh Slice Slice 1 Slice 2 Slice 3 without 4 Slice shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 8. Traditional Shadowmap Rendering » More/larger objects or more slices = more overhead » Both a CPU & GPU issue CPU: draw call / state overhead   GPU: primarily extra vertices & primitives » Want to reduce CPU overhead More objects   More slices = higher resolution  Longer shadow view distance
  • 9. DX10 Single-pass Shadowmap Rendering » Single draw call outputs to multiple slices Shadowmap is a texture array   Depth stencil array view with multiple slices  Geometry shader selects output slice with SV_RenderTargetArrayIndex » No CPU overhead With many objects intersecting multiple  frustums » Multiple implementations possible
  • 10. Shadowmap texture array view » Creation: D3D10_DEPTH_STENCIL_VIEW_DESC viewDesc; viewDesc.Format = DXGI_FORMAT_D24_UNORM_S8_UINT; viewDesc.ViewDimension = D3DALL_DSV_DIMENSION_TEXTURE2DARRAY; viewDesc.Texture2DArray.FirstArraySlice = 0; viewDesc.Texture2DArray.ArraySize = sliceCount; viewDesc.Texture2DArray.MipSlice = 0; device->CreateDepthStencilView(shadowmapTexture, &viewDesc, &view); » SampleCmp only supported on 10.1 for texture arrays 10.0 fallback: Manual PCF-filtering   Or vendor-specific APIs, ask your IHV rep.
  • 11. SV_RenderTargetArrayIndex » Geometry shader output value » Selects which texture slice each primitive should be rendered to » Available from D3D 10.0
  • 12. Geometry shader cloning #define SLICE_COUNT 4 float4x4 sliceViewProjMatrices[SLICE_COUNT]; struct GsInput { float4 worldPos : SV_POSITION; float2 texCoord : TEXCOORD0; }; struct PsInput { float4 hPos : SV_POSITION; float2 texCoord : TEXCOORD0; uint sliceIndex : SV_RenderTargetArrayIndex; }; [maxvertexcount(SLICE_COUNT*3)] void main(triangle GsInput input[3], inout TriangleStream<PsInput> stream) { for (int sliceIt = firstSlice; sliceIt != lastSlice; sliceIt++) { PsInput output; output.sliceIndex = sliceIt; for( int v = 0; v < 3; v++ ) { output.hPos = mul(input[v].worldPos, sliceViewProjMatrices[sliceIt]); output.texCoord = input[v].texCoord; stream.Append(output); } stream.RestartStrip(); } }
  • 13. Geometry shader cloning » Benefits Single shadowmap draw call per object  even if object intersects multiple slices » Drawbacks GS data amplification can be expensive   Not compatible with instancing  Multiple GS permutations for # of slices  Fixed max number of slices in shader
  • 14. Instancing GS method » Render multiple instances for objects that intersects multiple slices Combine with ordinary instancing that you  were already doing » Store slice index per object instance In vertex buffer, cbuffer or tbuffer   Together with the rest of the per-instance values (world transform, colors, etc) » Geometry shader only used for selecting output slice
  • 15. Instancing geometry shader struct GsInput { float4 hPos : SV_POSITION; float2 texCoord : TEXCOORD0; uint sliceIndex : TEXCOORD1; // from VS vbuffer or tbuffer (tbuffer faster) }; struct PsInput { float4 hPos : SV_POSITION; float2 texCoord : TEXCOORD0; uint sliceIndex : SV_RenderTargetArrayIndex; }; [maxvertexcount(3)] void main(triangle GsInput input[3], inout TriangleStream<PsInput> stream) { PsInput output; output.sliceIndex = input[v].sliceIndex; output.hPos = input[v].hPos; output.texCoord = input[v].texCoord; stream.Append(output); }
  • 16. Instancing geometry shader » Benefits Works together with ordinary instancing   Single draw call per shadow object type!  Arbitrary number of slices  Fixed CPU cost for shadowmap rendering » Drawbacks Increased shadowmap GPU time   Radeon 4870x2: ~1% (0.7–1.3%)  Geforce 280: ~5% (1.9–18%)  Have to write/generate GS permutation for every VS output combination
  • 17. Shadow Flickering » Causes Lack of high-quality filtering (>2x pcf)   Moving light source  Moving player view  Rotating player view  Changing field-of-view » With a few limitations, we can fix these for static geometry
  • 20. Stabilization (1/2) » Orthographic views Scene-independent   Make rotationally invariant = Fixed size ustum fr View 3 w do a Sh 2 w do a Sh 1 w do a Sh Slice Slice 1 Slice 2 Slice 3 without shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 21. Stabilization (1/2) » Orthographic views Scene-independent   Make rotationally invariant = Fixed size 3 ow m ad frustu sh View 3 le b ta Sw 2 do ow a ad Sh sh 2 e bl 1 aw dto ow aS ad Sh 1 sh w o le bd aa Sth Slice Slice 1 Slice 2 Slice 3 without shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 22. Stabilization (2/2) » Round light-space translation to even texel increments float f = viewSize / (float)shadowmapSize; translation.x = round(translation.x/f) * f; translation.y = round(translation.y/f) * f; » Still flickers on FOV changes & light rotation So don’t change them  
  • 23. Scene rendering » Slice selection methods Slice plane (viewport depth)  m u frust View Shadow 3 Shadow 2 Shadow 1 Slice Slice 1 Slice 2 Slice 3 without shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 24. Scene rendering » Slice selection methods Slice plane (viewport depth)   Bounding sphere (Killzone 2 [2]) m u frust View Shadow 3 Shadow 3 Shadow 2 Shadow 2 Shadow 1 Shadow 1 Slice Slice 1 Slice 2 Slice 3 without shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 25. Scene rendering » Slice selection methods Slice plane (viewport depth)   Bounding sphere (Killzone 2 [2])  Bounding box (BFBC / Frostbite) m u frust View Shadow 3 Shadow 3 Shadow 3 Shadow 2 Shadow 2 Shadow 2 Shadow 1 Shadow 1 Shadow 1 Slice Slice 1 Slice 2 Slice 3 without shadow Split plane 1 Split plane 2 Split plane 3 Near plane Far plane View direction
  • 29. Shadowmap texture array sampling shader float sampleShadowmapCascadedBox3Pcf2x2( SamplerComparisonState s, Texture2DArray tex, float4 t0, // t0.xyz = [-0.5,+0.5] t0.w == 0 float4 t1, // t1.xyz = [-0.5,+0.5] t1.w == 1 float4 t2) // t2.xyz = [-0.5,+0.5] t2.w == 2 { bool b0 = all(abs(t0.xyz) < 0.5f); bool b1 = all(abs(t1.xyz) < 0.5f); bool b2 = all(abs(t2.xy) < 0.5f); float4 t; t = b2 ? t2 : 0; t = b1 ? t1 : t; t = b0 ? t0 : t; t.xyz += 0.5f; float r = tex.SampleCmpLevelZero(s, t.xyw, t.z).r; r = (t.z < 1) ? r : 1.0; return r; }
  • 30. Conclusions » Stabilization reduces flicker With certain limitations  » Bounding box slice selection maximizes shadowmap utilization Higher effective resolution   Longer effective shadow view distance  Good fit with stabilization » Fewer draw calls by rendering to texture array with instancing Constant CPU rendering cost regardless of  number of shadow casting objecs & slices  At a small GPU cost
  • 31. Decal generation using the Geometry Shader and Stream Out Daniel Johansson
  • 32. What is a Decal?
  • 33. Overview Problem description » Solution » Implementation » Results » Future work » » Q & A for both parts
  • 34. Problem description » Decals were using physics collision meshes Caused major visual artifacts   We need to use the actual visual meshes » Minimize delay between impact and visual feedback Important in fast paced FPS games 
  • 35. Problem description » Already solved on consoles using shared memory (Xbox360) and SPU jobs (PS3) » No good solution existed for PC as of yet Duplicating meshes in CPU memory   Copying to CPU via staging resource
  • 36. Solution » Use the Geometry shader to cull and extract decal geometry From mesh vertex buffers in GPU RAM  » Stream out the decal geometry to a vertex ring buffer » Use clip planes to clip the decals when drawing
  • 37. Solution » Allows us to transfer UV-sets from the source mesh to the decal » Takes less vertex buffer memory than older method Due to use of clipplanes instead of manual  clipping
  • 39. Implementation – Geometry Shader » GS pass ”filters” out intersecting geometry from the input mesh Also performs a number of data  transforms » GS pass parameters Decal transform, spawn time, position in  vertex buffer etc » Let’s take a closer look at the GS code!
  • 40. Geometry Shader – in/output
  • 41. Transform mesh geometry to world space
  • 42. Setup plane equation for the triangle
  • 43. Discard if angle to decal is too big
  • 44. Transform triangle into decal object space
  • 46. Do a sphere/bbox test to discard triangle
  • 47. Code break » __asm { int 3; }
  • 49. Setup clip planes from decal quad edges (cookie cutter)
  • 56. Geometry Shader Performance » Complex GS shader - ~260 instructions Room for optimization  » GS draw calls usually around 0.05- 0.5 ms Depending on hardware of course  » Per frame capping/buffering used to avoid framerate drops
  • 57. Implementation – Buffer usage » One decal vertex buffer used as a ring buffer » One index buffer – dynamically updated each frame » Decal transforms stored on the CPU (for proximity queries)
  • 58. Implementation – Queries » Grouped together with each decal generation draw call » Result is used to ”commit” decals into their decal sets or discard them if no triangles were written
  • 59.
  • 60. Implementation – Queries » Issues Buffer overflows   Syncronization » No way of knowing where in the buffer vertices were written Only have NumPrimitivesWritten and  PrimitiveStorageNeeded
  • 61. Implementation – Queries » Solution: When an overflow is detected the buffer is wrapped around. If any decals are partially written they are  discarded and redispatched.
  • 62.
  • 66. Future Work » Rewrite to make use of DrawAuto() » Experiment more with material masking possibilites » Port to DX11 Compute Shader » Implement GPU-based ray/mesh intersection tests » SLI/Crossfire
  • 67. Questions? Contact: johan.andersson@dice.se daniel.johansson@dice.se igetyourfail.com
  • 68. References » [1] Zhang et al. ”Parallel-Split Shadow Maps on Programmable GPUsquot;. GPU Gems 3. » [2] Valient, Michael. quot;Stable Rendering of Cascaded Shadow Mapsquot;. ShaderX6