Add virtual Initialize() to PerfQueryBase

Both DX12 and Vulkan already had one.
This commit is contained in:
Scott Mansell
2023-01-29 23:57:37 +13:00
parent 3c73707dfe
commit 8bc8e43dd6
5 changed files with 9 additions and 18 deletions

View File

@ -34,6 +34,8 @@ public:
PerfQueryBase() : m_query_count(0) {}
virtual ~PerfQueryBase() {}
virtual bool Initialize() { return true; }
// Checks if performance queries are enabled in the gameini configuration.
// NOTE: Called from CPU+GPU thread
static bool ShouldEmulate();