2013-03-01 22:12:41 +00:00
|
|
|
#include "RenderBase.h"
|
2012-06-17 11:58:29 +00:00
|
|
|
#include "GLUtil.h"
|
|
|
|
#include "PerfQuery.h"
|
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
namespace OGL
|
|
|
|
{
|
2012-06-17 11:58:29 +00:00
|
|
|
|
|
|
|
PerfQuery::PerfQuery()
|
2013-02-16 23:50:40 +00:00
|
|
|
: m_query_read_pos()
|
|
|
|
, m_query_count()
|
2012-06-17 11:58:29 +00:00
|
|
|
{
|
2013-03-03 04:59:55 +00:00
|
|
|
for (u32 i = 0; i != ARRAYSIZE(m_query_buffer); ++i)
|
2013-02-16 23:50:40 +00:00
|
|
|
glGenQueries(1, &m_query_buffer[i].query_id);
|
|
|
|
|
|
|
|
ResetQuery();
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PerfQuery::~PerfQuery()
|
|
|
|
{
|
2013-03-03 04:59:55 +00:00
|
|
|
for (u32 i = 0; i != ARRAYSIZE(m_query_buffer); ++i)
|
2013-02-16 23:50:40 +00:00
|
|
|
glDeleteQueries(1, &m_query_buffer[i].query_id);
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PerfQuery::EnableQuery(PerfQueryGroup type)
|
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
// Is this sane?
|
|
|
|
if (m_query_count > ARRAYSIZE(m_query_buffer) / 2)
|
|
|
|
WeakFlush();
|
|
|
|
|
|
|
|
if (ARRAYSIZE(m_query_buffer) == m_query_count)
|
|
|
|
{
|
|
|
|
FlushOne();
|
2013-03-31 23:10:21 +00:00
|
|
|
//ERROR_LOG(VIDEO, "Flushed query buffer early!");
|
2013-02-16 23:50:40 +00:00
|
|
|
}
|
|
|
|
|
2012-06-17 11:58:29 +00:00
|
|
|
// start query
|
|
|
|
if (type == PQG_ZCOMP_ZCOMPLOC || type == PQG_ZCOMP)
|
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
auto& entry = m_query_buffer[(m_query_read_pos + m_query_count) % ARRAYSIZE(m_query_buffer)];
|
|
|
|
|
|
|
|
glBeginQuery(GL_SAMPLES_PASSED, entry.query_id);
|
|
|
|
entry.query_type = type;
|
|
|
|
|
|
|
|
++m_query_count;
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PerfQuery::DisableQuery(PerfQueryGroup type)
|
|
|
|
{
|
|
|
|
// stop query
|
|
|
|
if (type == PQG_ZCOMP_ZCOMPLOC || type == PQG_ZCOMP)
|
|
|
|
{
|
|
|
|
glEndQuery(GL_SAMPLES_PASSED);
|
2013-02-16 23:50:40 +00:00
|
|
|
}
|
|
|
|
}
|
2012-06-17 11:58:29 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
bool PerfQuery::IsFlushed() const
|
|
|
|
{
|
|
|
|
return 0 == m_query_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PerfQuery::FlushOne()
|
|
|
|
{
|
|
|
|
auto& entry = m_query_buffer[m_query_read_pos];
|
2013-03-01 22:12:41 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
GLuint result = 0;
|
|
|
|
glGetQueryObjectuiv(entry.query_id, GL_QUERY_RESULT, &result);
|
2013-03-01 22:12:41 +00:00
|
|
|
|
|
|
|
// NOTE: Reported pixel metrics should be referenced to native resolution
|
2013-03-01 22:57:56 +00:00
|
|
|
m_results[entry.query_type] += (u64)result * EFB_WIDTH / g_renderer->GetTargetWidth() * EFB_HEIGHT / g_renderer->GetTargetHeight();
|
2013-03-01 22:12:41 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
m_query_read_pos = (m_query_read_pos + 1) % ARRAYSIZE(m_query_buffer);
|
|
|
|
--m_query_count;
|
|
|
|
}
|
2012-06-17 11:58:29 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
// TODO: could selectively flush things, but I don't think that will do much
|
|
|
|
void PerfQuery::FlushResults()
|
|
|
|
{
|
|
|
|
while (!IsFlushed())
|
|
|
|
FlushOne();
|
|
|
|
}
|
2012-06-17 11:58:29 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
void PerfQuery::WeakFlush()
|
|
|
|
{
|
|
|
|
while (!IsFlushed())
|
|
|
|
{
|
|
|
|
auto& entry = m_query_buffer[m_query_read_pos];
|
|
|
|
|
|
|
|
GLuint result = GL_FALSE;
|
|
|
|
glGetQueryObjectuiv(entry.query_id, GL_QUERY_RESULT_AVAILABLE, &result);
|
|
|
|
|
|
|
|
if (GL_TRUE == result)
|
|
|
|
{
|
|
|
|
FlushOne();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PerfQuery::ResetQuery()
|
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
m_query_count = 0;
|
|
|
|
std::fill_n(m_results, ARRAYSIZE(m_results), 0);
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 PerfQuery::GetQueryResult(PerfQueryType type)
|
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
u32 result = 0;
|
|
|
|
|
|
|
|
if (type == PQ_ZCOMP_INPUT_ZCOMPLOC || type == PQ_ZCOMP_OUTPUT_ZCOMPLOC)
|
2012-06-17 11:58:29 +00:00
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
result = m_results[PQG_ZCOMP_ZCOMPLOC];
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
2013-02-16 23:50:40 +00:00
|
|
|
else if (type == PQ_ZCOMP_INPUT || type == PQ_ZCOMP_OUTPUT)
|
2012-06-17 11:58:29 +00:00
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
result = m_results[PQG_ZCOMP];
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
2013-02-16 23:50:40 +00:00
|
|
|
else if (type == PQ_BLEND_INPUT)
|
2012-06-17 11:58:29 +00:00
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
result = m_results[PQG_ZCOMP] + m_results[PQG_ZCOMP_ZCOMPLOC];
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
2013-02-16 23:50:40 +00:00
|
|
|
else if (type == PQ_EFB_COPY_CLOCKS)
|
2012-06-17 11:58:29 +00:00
|
|
|
{
|
2013-02-16 23:50:40 +00:00
|
|
|
result = m_results[PQG_EFB_COPY_CLOCKS];
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
2013-02-16 23:50:40 +00:00
|
|
|
|
|
|
|
return result / 4;
|
2012-06-17 11:58:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|