Changeset 1120 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 07/11/06 15:48:46 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgreDepthShadowMapRenderingRun.h
r1103 r1120 42 42 @brief returns the depth shadow map texture created by this run 43 43 */ 44 String getDepthMapTextureName( int i){return names[i];}44 String getDepthMapTextureName(){return name;} 45 45 /** 46 46 @brief Refreshes light camera matrices, called in each update. … … 50 50 @brief retuns the view matrix of the camera from which the depth shadow map was created 51 51 */ 52 Matrix4 getLightViewMatrix( int i);52 Matrix4 getLightViewMatrix(); 53 53 /** 54 54 @brief retuns the concatenation of the view and projection matrices of the camera from which the depth shadow map was created 55 55 */ 56 Matrix4 getLightViewProjMatrix( int i);56 Matrix4 getLightViewProjMatrix(); 57 57 58 58 protected: … … 64 64 @brief pointer to the camera of the lightsource 65 65 */ 66 Camera* depthMapCamera s[2];66 Camera* depthMapCamera; 67 67 /** 68 68 @brief the name of the material to be used when rendering the depth shadow map … … 76 76 @brief the name of the depth shadow map texture that was created by this run 77 77 */ 78 String name s[2];78 String name; 79 79 /** 80 80 @brief a pointer to the depth shadow texture that was created by this run 81 81 */ 82 Texture* depthMapTexture s[2];82 Texture* depthMapTexture; 83 83 84 84 //inherited
Note: See TracChangeset
for help on using the changeset viewer.