Ignore:
Timestamp:
03/18/07 00:25:35 (17 years ago)
Author:
mattausch
Message:
 
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  
    177177        */ 
    178178        bool isOctreeVisible(void); 
     179        void setOctreeFullyVisible(bool visible); 
     180        /** Returns true if this node is marked visible, false otherwise.  
     181        */ 
     182        bool isOctreeFullyVisible(void); 
    179183        /** Gets this node's parent (NULL if this is the root). 
    180184        */ 
     
    205209        int mLastVisited; 
    206210        bool mVisible; 
    207          
     211        bool mFullyVisible; 
    208212#endif // GTP_VISIBILITY_MODIFIED_OGRE 
    209213}; 
  • OGRE/trunk/ogre_changes/Ogre1.2/PlugIns/OctreeSceneManager/include/OgreOctreeSceneManager.h

    r921 r2257  
    123123                @param passes if passes should be left in queue for later processing 
    124124        */ 
    125         void _renderOctant(Camera* cam, Octree *octree, bool onlyShadowCasters,  
     125        void _renderOctant(Camera* cam,  
     126                                           Octree *octree,  
     127                                           bool onlyShadowCasters,  
    126128                const int leavePassesInQueue = 0); 
    127129 
    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        */ 
    129138        BoxList *getBoxes(); 
     139 
    130140#endif // GTP_VISIBILITY_MODIFIED_OGRE 
    131141 
Note: See TracChangeset for help on using the changeset viewer.