Ignore:
Timestamp:
04/02/07 11:50:36 (17 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgreOctreeHierarchyInterface.h

    r2292 r2306  
    6363                                           GtpVisibility::HierarchyNodeContainer &nodes); 
    6464 
     65        void PullUpLastVisited(GtpVisibility::HierarchyNode *node, const int frameId) const; 
     66        void DetermineVisibilityRatio(GtpVisibility::HierarchyNode *node) const; 
     67        float GetNodeVisibilityRatio(GtpVisibility::HierarchyNode *node) const; 
     68 
    6569protected: 
    6670 
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/include/OgrePlatformHierarchyInterface.h

    r2280 r2306  
    2626{ 
    2727public: 
    28         /** Construction taking the current scene manager and the current rendersystem as argument 
     28        /** Construction taking the current scene manager and the  
     29                current rendersystem as argument 
    2930                @param sm current scene manager 
    3031                @param rsys current render system  
     
    3637                @return the next occlusion query 
    3738        */ 
    38         GtpVisibility::OcclusionQuery *GetNextOcclusionQuery(); 
     39        virtual GtpVisibility::OcclusionQuery *GetNextOcclusionQuery(); 
    3940                 
    4041        /** Sets the current camera used for the rendering. 
     
    124125                                                                         bool includeChildren) = 0; 
    125126 
     127        void PullUpLastVisited(GtpVisibility::HierarchyNode *node, const int frameId) const {} 
     128        void DetermineVisibilityRatio(GtpVisibility::HierarchyNode *node) const {} 
     129 
     130        float GetNodeVisibilityRatio(GtpVisibility::HierarchyNode *node) const { return 1.0f;} 
     131 
    126132protected: 
    127133        /** Renders the given geometry  
Note: See TracChangeset for help on using the changeset viewer.