2012-06-17 11:58:29 +00:00
|
|
|
#ifndef _PERFQUERY_H_
|
|
|
|
#define _PERFQUERY_H_
|
|
|
|
|
|
|
|
#include "PerfQueryBase.h"
|
|
|
|
|
|
|
|
namespace OGL {
|
|
|
|
|
|
|
|
class PerfQuery : public PerfQueryBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PerfQuery();
|
|
|
|
~PerfQuery();
|
|
|
|
|
2013-10-29 05:34:26 +00:00
|
|
|
void EnableQuery(PerfQueryGroup type) override;
|
|
|
|
void DisableQuery(PerfQueryGroup type) override;
|
|
|
|
void ResetQuery() override;
|
|
|
|
u32 GetQueryResult(PerfQueryType type) override;
|
|
|
|
void FlushResults() override;
|
2013-02-16 23:50:40 +00:00
|
|
|
bool IsFlushed() const;
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
private:
|
|
|
|
struct ActiveQuery
|
|
|
|
{
|
|
|
|
GLuint query_id;
|
|
|
|
PerfQueryGroup query_type;
|
|
|
|
};
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
// when testing in SMS: 64 was too small, 128 was ok
|
2013-03-03 04:59:55 +00:00
|
|
|
static const u32 PERF_QUERY_BUFFER_SIZE = 512;
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
void WeakFlush();
|
|
|
|
// Only use when non-empty
|
|
|
|
void FlushOne();
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
// This contains gl query objects with unretrieved results.
|
|
|
|
ActiveQuery m_query_buffer[PERF_QUERY_BUFFER_SIZE];
|
2013-03-03 04:59:55 +00:00
|
|
|
u32 m_query_read_pos;
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
// TODO: sloppy
|
2013-03-03 04:59:55 +00:00
|
|
|
volatile u32 m_query_count;
|
2013-02-16 23:50:40 +00:00
|
|
|
volatile u32 m_results[PQG_NUM_MEMBERS];
|
2012-06-17 11:58:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif // _PERFQUERY_H_
|