Ignore:
Timestamp:
07/06/05 17:52:44 (19 years ago)
Author:
mattausch
Message:

added flags for switching on/off transparents for item buffer and vertex programs for depth pass / item buffer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibility/src/VisibilityInfo.cpp

    r153 r159  
    8888        return mMesh; 
    8989} 
     90 
     91/****************************************************/ 
     92/*              PatchInfo implementation             */ 
     93/****************************************************/ 
     94//----------------------------------------------------------------------- 
     95PatchInfo::PatchInfo(Patch *patch, const int visiblePixels, const int projectedPixels):  
     96VisibilityInfo(visiblePixels, projectedPixels), mPatch(patch)  
     97{} 
     98//----------------------------------------------------------------------- 
     99void PatchInfo::SetPatch(Patch *patch)  
     100{ 
     101        mPatch = patch; 
     102} 
     103//-----------------------------------------------------------------------        
     104Patch *PatchInfo::GetPatch() const  
     105{ 
     106        return mPatch; 
     107} 
    90108}// namespace GtpVisibility 
Note: See TracChangeset for help on using the changeset viewer.