Show
Ignore:
Timestamp:
10/23/06 17:19:13 (2 years ago)
Author:
dshipton
Message:

more bugfixes/ tweeking

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Dirk_RenderTraversalWork/Source/System/Action/RenderTraversal/OSGRenderTraversalAction.h

    r360 r363  
    230230    /*------------------ Occlusion Culling control --------------------------*/ 
    231231 
    232     void setOcclusionCulling(bool bVal); 
     232    void setOcclusionCulling(const bool bVal); 
    233233    bool getOcclusionCulling(void     ); 
    234234 
    235     void setOcclusionCullingDebug(bool bVal); 
     235    void setOcclusionCullingDebug(const bool bVal); 
    236236    bool getOcclusionCullingDebug(void     ); 
    237237 
    238     void setOcclusionDebugMasks(UInt32 tested, UInt32 culled, UInt32 visible); 
     238    void setOcclusionDebugMasks(const UInt32 tested, const UInt32 culled, const UInt32 visible); 
    239239    UInt32 getOcclusionTestedDebugMask(void); 
    240240    UInt32 getOcclusionCulledDebugMask(void); 
    241241    UInt32 getOcclusionVisibleDebugMask(void); 
    242242 
    243     void setOcclusionCullingMinimumFeatureSize(UInt32 pixels); 
     243    void setOcclusionCullingMinimumFeatureSize(const UInt32 pixels); 
    244244    UInt32 getOcclusionCullingMinimumFeatureSize(void); 
    245245 
    246     void setOcclusionCullingVisibilityThreshold(UInt32 pixels); 
     246    void setOcclusionCullingVisibilityThreshold(const UInt32 pixels); 
    247247    UInt32 getOcclusionCullingVisibilityThreshold(void); 
    248248 
    249     void setOcclusionCullingCoveredThreshold(Real32 percent); 
     249    void setOcclusionCullingCoveredThreshold(const Real32 percent); 
    250250    Real32 getOcclusionCullingCoveredThreshold(void); 
    251251 
    252     void setOcclusionCullingQueryBufferSize(UInt32 size); 
     252    void setOcclusionCullingQueryBufferSize(const UInt32 size); 
    253253    UInt32 getOcclusionCullingQueryBufferSize(void); 
    254254 
    255255    /*------------------- ScreenLOD Control -------------------------------*/ 
    256     void setScreenLODCoverageThreshold(Real32 percent); 
     256    void setScreenLODCoverageThreshold(const Real32 percent); 
    257257    Real32 getScreenLODCoverageThreshold(void); 
    258258