Fix OGL perf queries and make them not slow!

This commit is contained in:
Jordan Woyak
2013-02-16 17:50:40 -06:00
parent 54947b1e22
commit 53aec6c476
9 changed files with 178 additions and 43 deletions

View File

@ -32,6 +32,8 @@ public:
virtual void DisableQuery(PerfQueryGroup type) {}
virtual void ResetQuery() {}
virtual u32 GetQueryResult(PerfQueryType type) { return 0; }
virtual void FlushResults() {}
virtual bool IsFlushed() const { return true; }
};
extern PerfQueryBase* g_perf_query;