2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2014-02-15 06:12:13 +00:00
|
|
|
#include <array>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
2013-03-01 18:30:37 +00:00
|
|
|
|
|
|
|
namespace DX11 {
|
|
|
|
|
|
|
|
class PerfQuery : public PerfQueryBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PerfQuery();
|
|
|
|
~PerfQuery();
|
|
|
|
|
2014-03-11 05:55:00 +00:00
|
|
|
void EnableQuery(PerfQueryGroup type) override;
|
|
|
|
void DisableQuery(PerfQueryGroup type) override;
|
|
|
|
void ResetQuery() override;
|
|
|
|
u32 GetQueryResult(PerfQueryType type) override;
|
|
|
|
void FlushResults() override;
|
|
|
|
bool IsFlushed() const override;
|
2013-03-01 18:30:37 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct ActiveQuery
|
|
|
|
{
|
|
|
|
ID3D11Query* query;
|
|
|
|
PerfQueryGroup query_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
void WeakFlush();
|
|
|
|
|
|
|
|
// Only use when non-empty
|
|
|
|
void FlushOne();
|
|
|
|
|
|
|
|
// when testing in SMS: 64 was too small, 128 was ok
|
|
|
|
static const int PERF_QUERY_BUFFER_SIZE = 512;
|
|
|
|
|
2014-02-15 06:12:13 +00:00
|
|
|
std::array<ActiveQuery, PERF_QUERY_BUFFER_SIZE> m_query_buffer;
|
2013-03-01 18:30:37 +00:00
|
|
|
int m_query_read_pos;
|
|
|
|
|
|
|
|
// TODO: sloppy
|
|
|
|
volatile int m_query_count;
|
|
|
|
volatile u32 m_results[PQG_NUM_MEMBERS];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|