Ignore:
Timestamp:
06/27/08 13:33:46 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/RenderQueue.h

    r2795 r2801  
    3939        /** Returns the number entities currently in the queue. 
    4040        */ 
    41         int GetSize() const { return (int)mEntities.size(); } 
     41        inline int GetSize() const { return (int)mEntities.size(); } 
    4242        /** Renders and clears the queue. 
    4343        */ 
    4444        void Apply(); 
    45         /** Prints the ordering in the render queue. 
     45        /** Prints the current state of the render queue. 
    4646        */ 
    4747        void Print(); 
    4848 
    49         PerfTimer sortTimer; 
    50  
    51  
    5249protected: 
    5350 
    54         /** Sorts the render queue according to some parameters. 
     51        /** Sorts the render queue by materials / textures. 
    5552        */ 
    5653        void Sort(); 
     
    6461}; 
    6562 
     63/// measures sort time for detailed benchmarks 
     64static PerfTimer sortTimer; 
     65 
     66 
    6667} 
    6768 
Note: See TracChangeset for help on using the changeset viewer.