Changeset 2189 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 03/05/07 18:05:16 (18 years ago)
- Location:
- GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/OgreIlluminationManager.h
r2185 r2189 84 84 unsigned int focusingMapSize; 85 85 unsigned int shadowMapSize; 86 float areaLightRadius; 86 87 bool useLISPSM; 87 88 bool useVSM; … … 347 348 this->pathMapEntryPoints.push_back(p); 348 349 } 350 std::vector<PathMapEntryPoint>& getPathMapEntryPoints() 351 { 352 return pathMapEntryPoints; 353 } 349 354 void addPathMapClusterLength(unsigned int l) 350 355 { 351 356 this->pathMapClusterLengths.push_back(l); 352 357 } 358 unsigned int getPathMapClusterLengthsSize() 359 { 360 return this->pathMapClusterLengths.size(); 361 } 362 unsigned int getPathMapClusterLength(unsigned int index) 363 { 364 return pathMapClusterLengths.at(index); 365 } 366 float getAreaLightRadius(){return areaLightRadius;} 367 void setAreaLigtRadius(float radius){areaLightRadius = radius;} 353 368 }; 354 369 -
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderTechniques/OgrePathMapRenderTechnique.h
r2185 r2189 55 55 56 56 protected: 57 57 Pass* pathMapPass; 58 58 PathMapClusters* clusters; 59 59 };
Note: See TracChangeset
for help on using the changeset viewer.