Changeset 1886 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 12/13/06 16:36:34 (18 years ago)
- Location:
- GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreColorCubeMapRenderTechnique.h
r1725 r1886 52 52 String environmentMaterial, 53 53 int layer, 54 bool getMinMax, 55 bool attachToTexUnit, 56 String minVariableName, 57 String maxVariableName, 54 58 Pass* pass, 55 59 OgreRenderable* parentRenderable, -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreConvolvedCubeMapRenderTechnique.h
r1722 r1886 53 53 String selfMaterial, 54 54 String environmentMaterial, 55 bool getMinMax, 56 bool attachToTexUnit, 57 String minVariableName, 58 String maxVariableName, 55 59 Pass* pass, 56 60 OgreRenderable* parentRenderable, -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreCubeMapRenderTechnique.h
r1725 r1886 52 52 String environmentMaterial, 53 53 int layer, 54 bool getMinMax, 55 bool attachToTexUnit, 56 String minVariableName, 57 String maxVariableName, 54 58 Pass* pass, 55 59 OgreRenderable* parentRenderable, … … 72 76 String environmentMaterial; 73 77 String texturePostFix; 78 79 bool getMinMax; 80 bool attachToTexUnit; 81 String minVariableName; 82 String maxVariableName; 74 83 75 84 RenderingRun* createCubeMapRun(); … … 104 113 String environmentMaterial; 105 114 int layer; 115 116 bool getMinMax; 117 bool attachToTexUnit; 118 String minVariableName; 119 String maxVariableName; 106 120 }; -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgreDistanceCubeMapRenderTechnique.h
r1725 r1886 52 52 String environmentMaterial, 53 53 int layer, 54 bool getMinMax, 55 bool attachToTexUnit, 56 String minVariableName, 57 String maxVariableName, 54 58 Pass* pass, 55 59 OgreRenderable* parentRenderable, -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgreCubeMapRenderingRun.h
r1725 r1886 49 49 String selfMaterial, 50 50 String environmentMaterial, 51 bool getMinMax, 51 52 RenderingRunType cubemapRunType); 52 53 /** … … 54 55 */ 55 56 String getCubeMapTextureName(){return name;} 57 58 Vector4 getMax(){return max;} 59 Vector4 getMin(){return min;} 56 60 57 61 protected: … … 74 78 bool useEnvMaterial; 75 79 RenderingRunType cubemapRunType; 80 81 Vector4 min; 82 Vector4 max; 83 84 85 bool getMinMax; 76 86 77 87 void getCubeMapMinMax(); 78 88 //inherited 79 89 inline void createCubeMap();
Note: See TracChangeset
for help on using the changeset viewer.