- Timestamp:
- 03/18/07 00:25:35 (18 years ago)
- Location:
- OGRE/trunk/ogre_changes/Ogre1.2/PlugIns/OctreeSceneManager/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OGRE/trunk/ogre_changes/Ogre1.2/PlugIns/OctreeSceneManager/include/OgreOctree.h
r921 r2257 177 177 */ 178 178 bool isOctreeVisible(void); 179 void setOctreeFullyVisible(bool visible); 180 /** Returns true if this node is marked visible, false otherwise. 181 */ 182 bool isOctreeFullyVisible(void); 179 183 /** Gets this node's parent (NULL if this is the root). 180 184 */ … … 205 209 int mLastVisited; 206 210 bool mVisible; 207 211 bool mFullyVisible; 208 212 #endif // GTP_VISIBILITY_MODIFIED_OGRE 209 213 }; -
OGRE/trunk/ogre_changes/Ogre1.2/PlugIns/OctreeSceneManager/include/OgreOctreeSceneManager.h
r921 r2257 123 123 @param passes if passes should be left in queue for later processing 124 124 */ 125 void _renderOctant(Camera* cam, Octree *octree, bool onlyShadowCasters, 125 void _renderOctant(Camera* cam, 126 Octree *octree, 127 bool onlyShadowCasters, 126 128 const int leavePassesInQueue = 0); 127 129 128 /** Returns stored list of boxes */ 130 void _renderOctantRecursive(Camera* cam, 131 Octree *octree, 132 bool onlyShadowCasters, 133 const int leavePassesInQueue = 0); 134 135 136 /** Returns stored list of boxes 137 */ 129 138 BoxList *getBoxes(); 139 130 140 #endif // GTP_VISIBILITY_MODIFIED_OGRE 131 141
Note: See TracChangeset
for help on using the changeset viewer.