summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/D3D/PerfQuery.cpp
diff options
context:
space:
mode:
authorStevoisiak <Stevoisiak@gmail.com>2014-11-14 14:46:49 -0500
committerStevoisiak <S.Vascellaro@gmail.com>2014-11-24 17:16:59 -0500
commit6da394a4d0891ed30fbb08f4ec853f40699f7033 (patch)
tree3e95fff7fde66a1e121e2aa78b5c221fab8be8c9 /Source/Core/VideoBackends/D3D/PerfQuery.cpp
parent60e9301f40601a1a3d6546a37ea71f18a43f9b3b (diff)
More formatting and consistency fixes
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;
}