AngelCode.com > Reference Database

Graphics/Illumination/Shadow volumes

.NET  7
Artificial Intelligence  7
  Group behavior  2
  Path finding  16
    A* and its derivatives  6
  Pattern recognition  1
  Steering behavior  2
  World interaction  4
Audio  0
  DirectX  8
  DSP  5
  Ogg Vorbis  2
  OpenAL  1
  Windows  1
Computer Science  2
  Algorithms & data structures  12
    BSP trees  8
  Encryption  12
  Randomness & noise  11
Data storage  4
  File formats  14
    Image  10
  Resource files  2
Game Development  20
  Cheat & crack prevention  10
  Input  3
  Timing  4
Graphics  27
  Character animation  6
  DirectX  24
    Optimizing  8
  Illumination  5
    Deferred lighting  7
    Global illumination  8
    Lighting models  6
    Screen Space Ambient Occlusion  4
    Shadow maps  18
    Shadow volumes  15
  Image processing & synthesizing  19
  Non-polygonal rendering  3
    Ray tracing  3
  OpenGL  12
  Particle systems  7
  Shaders  32
  Simulation  4
    Cloth  2
    Clouds & sky light  7
    Fire & smoke  4
    Liquids  12
  Surfaces & Meshes  8
    Implicit surfaces  6
    Parametric curves & surfaces  7
    Polygon reduction & LOD  3
    Subdivision surfaces  7
  Terrain  7
    Continuous LOD  12
    Generating data  4
    Voxel engines  2
  Text  6
  Transparency  1
  Visibility determination  16
Languages  5
  Assembler  20
  C & C++  26
    C++ exceptions  5
    Calling conventions  12
    Debugging  5
    Memory management  7
    Optimizations  6
  C#  4
  Creating your own language  13
    Garbage collection  7
  D  2
  Java  4
  Scripting  3
    JScript & VBScript  1
    Lua  6
    Other languages  8
    Perl  2
    Python  5
    Ruby  4
Mathematics  3
  Fourier transform  4
  Geometry  6
  Linear algebra, vectors & matrices  9
  Wavelet transform  5
Object design  3
Physics  5
  Body dynamics  8
  Collision detection  10
    Polytopes  6
Platform  2
  Linux  1
  Mac  2
  Windows  13
    COM, ATL & WTL  8
    Dynamically loaded libraries  6
    Hooks  5
    Input  2
    Networking  6
    Screensavers  3
    Services  1
    Shell  2
    Small executables  3
    Windows  8
Web Technologies  8

Shadow Volume Reconstruction from Depth Maps
Jan 2000 - Michael D. McCool
This paper describes how to reconstruct a shadow volume from a rendered depthmap, or shadow map.

Shadows
Michael Skinner
This article gives a basic overview of several shadow algorithms including shadow volumes and shadow maps.

Practical and Robust Stenciled Shadow Volumes for Hardware-Accelerated Rendering
March 2002 - Cass Everitt, Mark Kilgard
The title pretty much says it all. The article explains how to overcome some of the difficulties with stenciled shadow volumes.

The Theory of Stencil Shadow Volumes
Dec 2002 - Hun Yen Kwoon
The article discusses stencil volumes, their problems and possible solutions. It's theoretical and thus doesn't show any implementation details but is never-the-less an interesting read.

Silhouette Tracking
June, 2003 - Tom J Hall
This article explains an algorithm that tracks the changes to silhouettes between frames. A performace increase of 700% is found compared to finding the silhouette from scratch each frame.

Approximate Soft Shadows on Arbitrary Surfaces using Penumbra Wedges
June, 2002 - Tomas Akenine-Möller, Ulf Assarsson
This article shows how to implement soft shadows, by extending the shadow volume algorithm with penumbra wedges.

Fast, Practical, and Robust Shadow Volumes
Nov 2003 - Morgan McGuire, John F Hughes, Kevin T Egan, Mark J Kilgard, Cass Everitt

Real-time Soft Shadows in a Game Engine
Dec, 2003 - Kasper Fauerby, Carsten Kjaer
This thesis shows how to do soft shadows using stencil shadow volumes and penumbra wedges. It also talks about managing large amount of light sources and occluders in a scene.

Hardware Determined Edge Features
2004 - Morgan McGuire, John F. Hughes
With this technique it is a simple task to do cartoon rendering, furs, and other effects that needs edge detection. I feel that it is particularly well suited for generating the shadow volumes on the GPU.

ZP+: Correct Z-pass Stencil Shadows
Fev, 2004 - Samuel Hornus, Jared Hoberock, Sylvain Lefebvre, John Hart
This article presents a new way of rendering stencil shadows. It uses the z-pass technique, but eliminates the need to compute caps at the near plane, by rendering the stencil shadows from the lightsource's point of view.

Advanced Stencil Shadow and Penumbral Wedge Rendering
March, 2005 - Eric Lengyel
Slides that presents how to do stencil soft shadows with penumbra wedges. It contains plenty of optimizations for making the rendering as fast as possible.

Shadow Techniques for Relief Texture Mapped Objects
Oct, 2005 - Alan Watt, Fabio Policarpo
Excerpt from the book Advanced Game Development with Programmable Graphics Hardware.

Shadow Caster Volumes For The Culling Of Potential Shadow Casters
Luke Hutchinson
Shows one way of improving performance by culling shadow casters that do not produce visible shadows.

An Optimized Soft Shadow Volume Algorithm with Real-Time Performance
2003 - Ulf Assarsson, Michael Dougherty, Michael Mounier, Tomas Akenine-Möller

Real-time Shadow Algorithms and Techniques
Oct, 2008 - nVidia
nVidia has set up a page full of links to articles and samples on shadowing, including most popular techniques, such as shadow mapping, shadow volumes, soft shadows, etc.