Ignore:
Timestamp:
09/16/08 16:03:01 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/ShadowMapping.h

    r2947 r2952  
    1919class Vector3; 
    2020class Camera; 
    21 class Light; 
     21class DirectionalLight; 
    2222 
    2323/** This class implements a the computation of single shadow map 
     
    3030                The shadow map has resolution size * size. 
    3131        */ 
    32         ShadowMap(Light *light, int size, const AxisAlignedBox3 &sceneBox, Camera *cam); 
     32        ShadowMap(DirectionalLight *light, int size, const AxisAlignedBox3 &sceneBox, Camera *cam); 
    3333 
    3434        ~ShadowMap(); 
     
    115115        Matrix4x4 mTextureMatrix; 
    116116        /// the used light 
    117         Light *mLight; 
     117        DirectionalLight *mLight; 
    118118        /// the scene camera 
    119119        Camera *mCamera; 
Note: See TracChangeset for help on using the changeset viewer.