mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
PerfQueryBase: Move common implementation variables into base class
This commit is contained in:
parent
7506c386cf
commit
63393570fb
5 changed files with 10 additions and 11 deletions
|
@ -24,7 +24,11 @@ enum PerfQueryGroup
|
|||
class PerfQueryBase
|
||||
{
|
||||
public:
|
||||
PerfQueryBase() {}
|
||||
PerfQueryBase()
|
||||
: m_query_count(0)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~PerfQueryBase() {}
|
||||
|
||||
// Checks if performance queries are enabled in the gameini configuration.
|
||||
|
@ -50,6 +54,11 @@ public:
|
|||
// True if there are no further pending query results
|
||||
// NOTE: Called from CPU thread
|
||||
virtual bool IsFlushed() const { return true; }
|
||||
|
||||
protected:
|
||||
// TODO: sloppy
|
||||
volatile u32 m_query_count;
|
||||
volatile u32 m_results[PQG_NUM_MEMBERS];
|
||||
};
|
||||
|
||||
extern PerfQueryBase* g_perf_query;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue