summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/D3D/PerfQuery.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoBackends/D3D/PerfQuery.cpp')
-rw-r--r--Source/Core/VideoBackends/D3D/PerfQuery.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Core/VideoBackends/D3D/PerfQuery.cpp b/Source/Core/VideoBackends/D3D/PerfQuery.cpp
index 61a501d640..d80d934c7c 100644
--- a/Source/Core/VideoBackends/D3D/PerfQuery.cpp
+++ b/Source/Core/VideoBackends/D3D/PerfQuery.cpp
@@ -72,21 +72,13 @@ u32 PerfQuery::GetQueryResult(PerfQueryType type)
u32 result = 0;
if (type == PQ_ZCOMP_INPUT_ZCOMPLOC || type == PQ_ZCOMP_OUTPUT_ZCOMPLOC)
- {
result = m_results[PQG_ZCOMP_ZCOMPLOC];
- }
else if (type == PQ_ZCOMP_INPUT || type == PQ_ZCOMP_OUTPUT)
- {
result = m_results[PQG_ZCOMP];
- }
else if (type == PQ_BLEND_INPUT)
- {
result = m_results[PQG_ZCOMP] + m_results[PQG_ZCOMP_ZCOMPLOC];
- }
else if (type == PQ_EFB_COPY_CLOCKS)
- {
result = m_results[PQG_EFB_COPY_CLOCKS];
- }
return result / 4;
}