From 6da394a4d0891ed30fbb08f4ec853f40699f7033 Mon Sep 17 00:00:00 2001 From: Stevoisiak Date: Fri, 14 Nov 2014 14:46:49 -0500 Subject: More formatting and consistency fixes --- Source/Core/VideoBackends/D3D/PerfQuery.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Source/Core/VideoBackends/D3D/PerfQuery.cpp') 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; } -- cgit v1.2.3