Changeset 1670 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 10/23/06 23:26:11 (18 years ago)
- Location:
- GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/OgreIlluminationManager.h
r1639 r1670 74 74 bool blurSM; 75 75 bool focusingSM; 76 String shadowMapMaterialName; 76 77 unsigned int phaseTextureSize; 77 78 std::map<RenderingRunType,float> maxRads; … … 315 316 void setFocusingSM(bool use){focusingSM = use;} 316 317 void setBlurShadowMap(bool use){blurSM = use;} 318 void setShadowMapMaterialName(String name){shadowMapMaterialName = name;} 317 319 }; 318 320 -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreDepthShadowRecieverRenderTechnique.h
r836 r1670 47 47 String shadowVertexProgram, 48 48 String shadowFragmentProgram, 49 bool setLightViewMatrix, 50 bool setLightViewProjMatrix, 51 bool setLightProjFarPlane, 52 String lightViewProjParamName, 53 String lightViewParamName, 54 String lightFarPlaneParamName, 49 55 Pass* pass, 50 56 OgreRenderable* parentRenderable, … … 79 85 @breif new passes created by this technique 80 86 */ 81 std::vector<Pass*> passes; 87 std::vector<Pass*> passes; 88 bool setLightViewMatrix; 89 bool setLightViewProjMatrix; 90 bool setLightProjFarPlane; 91 String lightViewProjParamName; 92 String lightViewParamName; 93 String lightFarPlaneParamName; 82 94 }; 83 95 … … 98 110 String shadowVertexProgram; 99 111 String shadowFragmentProgram; 112 bool setLightViewMatrix; 113 bool setLightViewProjMatrix; 114 bool setLightProjFarPlane; 115 String lightViewProjParamName; 116 String lightViewParamName; 117 String lightFarPlaneParamName; 100 118 101 119 }; -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgreDepthShadowMapRenderingRun.h
r1628 r1670 56 56 */ 57 57 Matrix4 getLightViewProjMatrix(); 58 Real getLightFarPlane(){return lightFarPlane;} 58 59 59 60 protected: … … 84 85 Texture* depthMapTexture; 85 86 Texture* blurredDepthMapTexture; 87 Real lightFarPlane; 86 88 87 89 //inherited
Note: See TracChangeset
for help on using the changeset viewer.