Changeset 2200 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 03/07/07 17:34:13 (18 years ago)
- Location:
- GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/OgreIlluminationManager.h
r2189 r2200 34 34 Vector3 position; 35 35 Vector3 normal; 36 float prob; 36 37 }; 37 38 /** -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgrePathMapRenderTechnique.h
r2189 r2200 57 57 Pass* pathMapPass; 58 58 PathMapClusters* clusters; 59 Texture* weightIndexTexture; 60 61 void createWeightIndexTexture(); 59 62 }; 60 63 -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgrePMEntryPointMapRenderingRun.h
r2189 r2200 29 29 */ 30 30 String getEntryPointTextureName(){return name;} 31 String getClusterLengthTextureName(){return clusterLengthTexture->getName();} 31 32 32 33 protected: … … 39 40 */ 40 41 Texture* entryPointTexture; 42 Texture* clusterLengthTexture; 41 43 42 44 //inherited -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgrePMWeightComputeRenderingRun.h
r2189 r2200 28 28 @brief returns the name of the camera depth texture 29 29 */ 30 String getPMWeightTetureName(){return name;}30 String getPMWeightTetureName(){return weightTexture->getName();} 31 31 float* getWeights(){return weights;} 32 32 … … 45 45 */ 46 46 Texture* weightTexture; 47 Texture* allWeightsTexture; 47 48 48 49 Light* light; … … 54 55 55 56 inline void createWeightMap(); 56 57 bool needUpdate(unsigned long frameNum )58 {59 return true;60 }61 62 57 };
Note: See TracChangeset
for help on using the changeset viewer.