Changeset 86 for trunk/VUT/chcdemo


Ignore:
Timestamp:
05/06/05 01:39:32 (19 years ago)
Author:
mattausch
Message:
 
Location:
trunk/VUT/chcdemo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/chcdemo/HierarchyNode.h

    r10 r86  
    3434 
    3535/** This class represents a node in a k-d tree hierarchy. A 
    36 node has two children. The node can be either an interior node (i.e., left and right child 
    37 NULL) or a leaf node, which holds the actual geometry. 
     36        node has two children. The node can be either an interior node (i.e., left and right child 
     37        NULL) or a leaf node, which holds the actual geometry. 
    3838*/ 
    3939 
  • trunk/VUT/chcdemo/RenderTraverser.cpp

    r43 r86  
    5656 
    5757/** 
    58 This is the standard render traversal algorithm doing only frustum culling 
     58        This is the standard render traversal algorithm doing only frustum culling 
    5959*/ 
    6060void RenderTraverser::RenderCullFrustum() 
     
    144144        { 
    145145                while(!queryQueue.empty() &&  
    146                           (ResultAvailable(queryQueue.front()) ||       mDistanceQueue.empty())) 
     146                          (ResultAvailable(queryQueue.front()) || mDistanceQueue.empty())) 
    147147                { 
    148148                        HierarchyNode *node = queryQueue.front(); 
     
    327327} 
    328328 
    329 void RenderTraverser::IssueOcclusionQuery(HierarchyNode *node, bool wasVisible) 
     329void RenderTraverser::IssueOcclusionQuery(HierarchyNode *node, const bool wasVisible) 
    330330{ 
    331331        // get next available test id 
Note: See TracChangeset for help on using the changeset viewer.