Changeset 2946


Ignore:
Timestamp:
09/15/08 09:28:42 (16 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/FriendlyCulling.vcproj

    r2928 r2946  
    308308                        </File> 
    309309                        <File 
     310                                RelativePath=".\src\SceneEntityConverter.cpp" 
     311                                > 
     312                        </File> 
     313                        <File 
     314                                RelativePath=".\src\SceneEntityConverter.h" 
     315                                > 
     316                        </File> 
     317                        <File 
    310318                                RelativePath=".\src\SceneQuery.cpp" 
    311319                                > 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/DeferredRenderer.cpp

    r2944 r2946  
    987987        cgGLSetParameter1f(sMaxDepthShadowParam, mScaleFactor); 
    988988        //cgGLSetParameter1f(sSampleWidthParam, 10.0f / shadowMap->GetSize()); 
    989         cgGLSetParameter1f(sSampleWidthParam, 2.5f / shadowMap->GetSize()); 
     989        cgGLSetParameter1f(sSampleWidthParam, 2.0f / shadowMap->GetSize()); 
     990        //cgGLSetParameter1f(sSampleWidthParam, 2.0f / 2048); 
    990991          
    991992        cgGLSetMatrixParameterfc(sShadowMatrixParam, (const float *)shadowMatrix.x); 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/ResourceManager.h

    r2844 r2946  
    3434        */ 
    3535        bool Load(const std::string &filename, SceneEntityContainer &geometry); 
    36         SceneEntityContainer mSceneEntities; 
    3736 
    3837protected: 
     
    5857         
    5958        ShapeContainer mShapes; 
     59 
     60        //////// 
     61 
     62        SceneEntityContainer mSceneEntities; 
    6063}; 
    6164 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/chcdemo.cpp

    r2945 r2946  
    7070int renderMode = RenderTraverser::CHCPLUSPLUS; 
    7171// eye near plane distance 
    72 float nearDist = 0.5f; 
     72float nearDist = 1.0f; 
    7373float farDist = 1e6f; 
    7474/// the field of view 
Note: See TracChangeset for help on using the changeset viewer.