PerfQueryBase: Move common implementation variables into base class

This commit is contained in:
Lioncash
2015-04-15 19:22:16 -04:00
parent 7506c386cf
commit 63393570fb
5 changed files with 10 additions and 11 deletions

View File

@ -6,7 +6,6 @@ namespace DX11 {
PerfQuery::PerfQuery()
: m_query_read_pos()
, m_query_count()
{
for (ActiveQuery& entry : m_query_buffer)
{

View File

@ -36,10 +36,6 @@ private:
std::array<ActiveQuery, PERF_QUERY_BUFFER_SIZE> m_query_buffer;
int m_query_read_pos;
// TODO: sloppy
volatile int m_query_count;
volatile u32 m_results[PQG_NUM_MEMBERS];
};
} // namespace