source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/Pvs.cpp @ 3284

Revision 3284, 375 bytes checked in by mattausch, 15 years ago (diff)
Line 
1#include "Pvs.h"
2#include "Timer/PerfTimer.h"
3#include <iostream>
4
5
6namespace CHCDemoEngine
7{
8
9
10bool operator<(const PvsEntry &a, const PvsEntry &b)
11{
12   //return a.mTimeStamp < b.mTimeStamp;
13        return true;
14}
15
16
17void Pvs::Clear()
18{
19        mEntries.clear();
20}
21
22
23bool Pvs::Empty() const
24{
25        return mEntries.empty();
26}
27
28
29void Pvs::Sort()
30{
31}
32
33
34
35}
Note: See TracBrowser for help on using the repository browser.