Ignore:
Timestamp:
01/23/06 21:37:50 (18 years ago)
Author:
bittner
Message:

gl render error estimation changes for backface culling empty viewspace detection

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellsManager.cpp

    r571 r572  
    12681268  if (!mBspTree) 
    12691269        return NULL; 
     1270 
     1271  if (!mViewSpaceBox.IsInside(point)) 
     1272        return NULL; 
     1273 
    12701274  return mBspTree->GetViewCell(point); 
    12711275} 
     
    26142618        if (!mVspBspTree) 
    26152619                return NULL; 
     2620 
     2621        if (!mViewSpaceBox.IsInside(point)) 
     2622          return NULL; 
     2623 
    26162624        return mVspBspTree->GetViewCell(point); 
    26172625} 
Note: See TracChangeset for help on using the changeset viewer.