Comparing Shadow Mapping Techniques with Shadow Explorer

Published March 21, 2011 by Alexey Rukhlinskiy and Quentin Froemke, posted by Myopic Rhino
Do you see issues with this article? Let us know.
Advertisement
This article brought to you by Intel® Visual Computing Developer Community

34427.jpg


Code Sample Download Page



http://software.intel.com/en-us/articles/shadowexplorer/

Download Article



Download Comparing Shadow Mapping Techniques with Shadow Explorer [PDF 990KB]

Introduction



Most modern games use shadows to some degree. The challenge is to know which algorithm to use and what the tradeoffs are of different techniques-what combination of quality and performance is best suited for the game. This sample, Shadow Explorer, lets the user compare and contrast four different algorithms, adjust various parameters for each one, and observe the effects in real time. The shadow mapping algorithms presented are: simple, percentage closer filtered (PCF), variance (VSM), and exponential variance (EVSM).

Sample Usage



At the highest level, this sample allows the user to compare and contrast the quality and performance characteristics of the different shadowing algorithms. There are two scenes that each algorithm can be applied to: a city and a teapot. The city scene represents a "typical" setting that might be encountered in a game, consisting of a variety of object sizes, dimensions, and other characteristics. The teapot is a "worst case" scenario consisting primarily of thin primitives, casting shadows not only on themselves but also on curved surfaces and a flat plane.

Sample Architecture



Shadow Explorer is implemented as a Microsoft DirectX* application based on the DXUT framework. All four shadow mapping algorithms basically follow the same code path, except that different shaders are used and that VSM and EVSM run a filter over the shadow map before the scene is rendered. Listing 1 shows the basic flow of the source code for creating and using the shadow map. Every frame, the shadow map is created in RenderShadowMap() which builds a standard cascaded shadow map by running the SceneZ shader. As mentioned, for VSM and EVSM the shadow map is then filtered using the FilterV and FilterH shaders. After the shadow map is created, the scene is rendered with the shader SceneMain which, depending on the algorithm selected, will call a different version of IsNotInShadow(). This is done by simply including different .fxh files and recompiling the shaders when a new algorithm is selected. For example, if PCF is selected then IsNotInShadow() will call the version in filter_PCF.fxh.

static void RenderShadowMap(...)
{
// For each cascade
for( int i = 0; i < iLayers; ++i )
{
// Set the Z only pass
SetRenderTargets( 0, NULL, g_d3d.pShadowMapDSV );
g_d3d.pTechSceneZ->GetPassByIndex( 0 )->Apply( 0,
pd3dImmediateContext );
// Render the appropriate scene
g_pSelectedMesh->Render( pd3dImmediateContext );
}

// VSM and EVSM techniques require additional filters
if(Filter_Type_VSM || Filter_Type_EVSM)
{
// Use the shadow map just generated in the filters
g_d3d.pVarShadowTex->SetResource( g_d3d.pShadowMapSRV );

// Run the vertical filter
SetRenderTargets( 1, &pShadowMapRTV_vsm[0].p, NULL );
g_d3d.pTechFilter_V->GetPassByIndex( 0 )->Apply(...);
pd3dImmediateContext->Draw(...);

// Use the result of the vertical filter
g_d3d.pVarShadowTex->SetResource( g_d3d.pShadowMapSRV_vsm[0] );

// Run the horizontal filter
SetRenderTargets( 1, &pShadowMapRTV_vsm[1].p, NULL );
g_d3d.pTechFilter_H->GetPassByIndex( 0 )->Apply(...);
pd3dImmediateContext->Draw(...);
}
}

static void RenderScene(...)
{
RenderShadowMap(...)

if(Filter_Type_VSM || Filter_Type_EVSM)
// Use the filtered shadow map
g_d3d.pVarShadowTex->SetResource( g_d3d.pShadowMapSRV_vsm[1] );
else
g_d3d.pVarShadowTex->SetResource( g_d3d.pShadowMapSRV );
g_pSelectedMesh->Render(...);
}

Listing 1 - Basic flow of application code in Shadow Explorer

The simplest technique presented is that of a basic, cascaded shadow map. This is obviously going to be the fastest method as it does the least amount of work, but leaves a lot to be desired in terms of quality. The next technique is PCF, which works off the same shadow map but samples the texture multiple times to alleviate aliasing problems and soften the shadow edges. Better results can be achieved by taking more samples, but with the expected tradeoff in performance. By using a non-uniformly distributed sample distribution, fewer samples need to be taken to achieve good results. Shadow Explorer uses a pre-calculated Halton sequence to calculate "random" offsets instead of a grid based offset. Even using the non-uniform method, PCF still requires a lot of sample look ups, making the algorithm fairly time consuming on the GPU.

The next technique, VSM, takes a different approach by storing both the depth and depth squared values into the shadow map. In Shadow Explorer, the shadow map is rendered normally and the depth squared value is added during a separate pass immediately after the z-pass is done. Additionally, this second pass runs a box filter over the data to soften the edges of the shadows. The main drawback to the VSM algorithm is the light bleeding effect when multiple occluders overlap each other and the ratio of their distances from the shadow receiver is high. This can be seen in Figure 1, where the shadow of the tall building in the background is outlined in light where it overlaps the shadows of the two smaller buildings in the foreground.




34428.jpg


Figure 1 - VSM results in light bleeding artifacts


Depending on the scene, light bleeding may not be noticeable enough to be a problem. If it is, EVSM can be used to eliminate the problem, as can be seen in Figure 2. The main difference with VSM is that EVSM "warps" the depth value when storing and reading from the shadow map. This has the effect of bringing the relative distances of the occluders to the receiver closer together in order to minimize or eliminate light bleeding. Shadow Explorer does this in the shader function WarpDepth().

34429.jpg
Figure 2 - EVSM fixes light bleeding


Conclusion



Shadow Explorer implements four shadow mapping techniques with runtime modification of various parameters so the user can compare both the performance and the quality of the methods. For each technique, care was taken to ensure optimal performance of the algorithms. Some of the optimizations done include using half floats instead of floats, unrolling loops in PCF, running the vertical filter before the horizontal filter, selecting the cascade Z interval instead of fitting to best cascade, and calculating shadows only for triangles oriented towards the light. Additional resources, including both binary and source code versions, are available for download at http://software.intel.com/en-us/articles/shadowexplorer.

Some areas for further development would be the addition of spot and point lights to demonstrate the flexibility of the shadow techniques. Animated objects could also be added to create an environment more representative of a game. Also, different algorithms could be used to more accurately place the split planes.

Controls



Shadow Explorer allows the user to change a variety of parameters to modify the shadow algorithms and change the shadow technique being used. Here is a list of the controls along with a brief description:

  1. Toggle full screen - Turns full screen on/off
  2. Change device - Change the d3d device
  3. Scene drop down list - Change the scene being viewed
  4. Align light to camera - Rotates the light along the light direction for optimal usage of shadow map space.
  5. Algorithm drop down list - Change the filtering method being used
  6. Shadow Map BPP - How many bits are used for each pixel in the shadow map
  7. SM resolution - resolution of the shadow map
  8. Filter size - The size of the filter used in PCF, VSM, and EVSM
  9. Cascade layers - How many cascades are used
  10. Cascade Factor - Adjusts how the split space is partitioned by split planes
  11. Aperture - Spatial screen space filter aperture for PCF
  12. Visualize Cascades - Visualize the different cascade levels
  13. Visualize Light Space - Displays the scene from the light source's point of view.
  14. Use Texture Array - Use texture array for cascades. Each cascade layer receives one texture, otherwise a texture atlas is used.
  15. Z interval selection - How to determine which cascade a particular pixel is in. If enabled, then only the view space z distance is used. Otherwise, the world position of the pixel is tested against each cascade.
  16. Deduce Z range - Calculates z-range from the current view. Otherwise uses the scene bounding box as the upper bound.
  17. Deduce Res - Resolution of the render target used to calculate z range.
  18. Downscale Factor - Every subsequent GPU deduce pass uses a render target texture of smaller size. This option determines the relation between texture sizes of subsequent passes.
  19. Downscale Limit - Maximum texture size when Z-range deduction is performed on GPU. At some point it should be more efficient to pull the whole resource to the CPU and finish deduction there, saving several draw calls.

References


  1. Williams, L. 1978. Casting curved shadows on curved surfaces. In Proc. SIGGRAPH, vol. 12, 270-274. http://portal.acm.or...n.cfm?id=807402
    [nbsp]
  2. Donnelly, W. and Lauritzen, A. Variance shadow maps. In SI3D '06: Proceedings of the 2006 symposium on Interactive 3D graphics and games. 2006. pp. 161-165. New York, NY, USA: ACM Press. http://www.punkuser....m/vsm_paper.pdf
    [nbsp]
  3. Lauritzen, Andrew and McCool, Michael. Layered variance shadow maps. Proceedings of graphics interface 2008, May 28-30, 2008, Windsor, Ontario, Canada. http://portal.acm.or...=GUIDE&dl=GUIDE
    [nbsp]
  4. Isidoro, J. R. Shadow Mapping: GPU-based Tips and Techniques. Conference Session. GDC 2006. March 2006, San Jose, CA. http://developer.amd...adowMapping.pdf
    [nbsp]
  5. The Halton Sequence. http://orion.math.ia...n_sequence.html
    [nbsp]
  6. Engel, Wolfgang F. Section 4. Cascaded Shadow Maps. ShaderX 5, Advanced Rendering Techniques, Wolfgang F. Engel, Ed. Charles River Media, Boston, Massachusetts. 2006. pp. 197-206.

Read the Blog!



http://origin-software.intel.com/en-us/blogs/2011/02/23/another-gaming-and-graphics-sample-coming-to-a-download-near-you/
Cancel Save
0 Likes 10 Comments

Comments

Prune
There are no binaries at the download link, just source. Can someone post binaries? Thanks in advance.
March 25, 2011 06:10 PM
PhilTaylor
I see that the page

[url="http://software.intel.com/en-us/articles/shadowexplorer/"]http://software.intel.com/en-us/articles/shadowexplorer/[/url]

has a source code link

[url="http://software.intel.com/file/34503"]http://software.intel.com/file/34503[/url]

does that not work for you?
March 25, 2011 10:10 PM
PhilTaylor
let me restate, why cant you build the binaries from the source?
March 25, 2011 11:08 PM
maxest
In the newest GPU Pro 2 I also described this technique (along with some others for alleviating light-bleeding) in an article entitled "Variance Shadow Maps Light-Bleeding Reduction Tricks". There is also a demo with really well-organized source code and shaders.
March 27, 2011 12:55 PM
Xavier_Ho
@Prune: There is a binary windows executable for both 32 and 64 bit inside the source code download.
March 28, 2011 12:32 PM
Prune
PhilTaylor, it's because I'd have to install the DirectX SDK just for this (I use OpenGL not DX).
SpaXe, thanks for the link. It seems to require DX10.1 and so with my GTX-285 based card I had to run it in software emulation mode, though I don't know what hardware feature that DX10 lacks is needed for these shadow mapping algorithms...
In any case, it's unfortunate that there's VSM and EVSM but no ESM for comparison. Additionally, I have to ask, which method both provides smooth shadows and avoids the artifact seen here with EVSM (VSM is even worse): http://i56.tinypic.com/359gwu1.png
I thought that EVSM's purpose is exactly to avoid this sort of thing :(
April 01, 2011 02:10 AM
Geri
Ii suggest next time if you dudes put an article up with ,,comparing shadow map techniques'', compare shadow map techniques in it (there is ~10 of them), instead of showing two variation of the same effect.
May 02, 2011 05:35 PM
VladimirBondarev

I've done a small specialization at my university about aliasing on shadow mapping, Its not top quality, but perhaps could be useful to someone else:

http://www.bondarev.nl/files/specialization_shadow_mapping_algorithms.pdf

August 24, 2013 09:30 PM
arpitayadav

An obligation of gratefulness is all together for sharing so significative article with us. I concur with your thought completely. I am imagining another stunning article from you. Dubai Escorts Service

July 15, 2020 11:12 AM
arpitayadav

This is a very useful article. I will connect it back to your site though. Call girls in Dubai

July 15, 2020 11:13 AM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement