#include "Pvs.h" #include "Timer/PerfTimer.h" #include namespace CHCDemoEngine { bool operator<(const PvsEntry &a, const PvsEntry &b) { #ifdef USE_TIMESTAMPS return a.mTimeStamp < b.mTimeStamp; #else return true; #endif } void Pvs::Clear() { mEntries.clear(); } bool Pvs::Empty() const { return mEntries.empty(); } void Pvs::Sort() { // TODO } }