Changeset 29 for trunk/VUT/OcclusionCullingSceneManager/include
- Timestamp:
- 03/24/05 12:15:20 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/OcclusionCullingSceneManager/include/OgreOcclusionCullingSceneManager.h
r28 r29 53 53 void _updateSceneGraph(Camera* cam); 54 54 55 /** Sets the given option for the SceneManager 56 @remarks 57 Options are: 58 "Algorithm", int *; 59 */ 60 virtual bool setOption( const String &, const void * ); 61 /** Gets the given option for the Scene Manager. 62 @remarks 63 See setOption 64 */ 65 virtual bool getOption( const String &, void * ); 66 67 bool getOptionValues( const String & key, StringVector &refValueList ); 68 bool getOptionKeys( StringVector &refKeys ); 69 55 70 protected: 56 71 enum {MODE_QUERY, MODE_RENDER}; … … 85 100 */ 86 101 SolidHalfBoundingBox *getSolidHalfBoundingBox(int half); 87 /** sets the type of the algorithm 88 @param algorithm type 89 */ 90 void setAlgorithmType(int type); 91 92 int getAlgorithmType(); 102 93 103 94 104 // we use a priority queue rather than a renderstack … … 104 114 // two halfes of a aabb 105 115 SolidHalfBoundingBox *mHalfBoundingBox[2]; 106 int m AlgorithmType;116 int mCurrentAlgorithm; 107 117 }; 108 118
Note: See TracChangeset
for help on using the changeset viewer.