From e020f5b04b4d5e58407f22dcebb465dfe7f62f5b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 9 May 2018 12:11:27 -0400 Subject: [PATCH] RenderBase: Remove unused PixelPerfQuery enum Neither the values or the identifier name of the enum is used anywhere in the codebase. --- Source/Core/VideoCommon/RenderBase.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Source/Core/VideoCommon/RenderBase.h b/Source/Core/VideoCommon/RenderBase.h index 7e4f4e00f7..2f3a28414d 100644 --- a/Source/Core/VideoCommon/RenderBase.h +++ b/Source/Core/VideoCommon/RenderBase.h @@ -68,16 +68,6 @@ public: using ClearColor = std::array; - enum PixelPerfQuery - { - PP_ZCOMP_INPUT_ZCOMPLOC, - PP_ZCOMP_OUTPUT_ZCOMPLOC, - PP_ZCOMP_INPUT, - PP_ZCOMP_OUTPUT, - PP_BLEND_INPUT, - PP_EFB_COPY_CLOCKS - }; - virtual void SetPipeline(const AbstractPipeline* pipeline) {} virtual void SetScissorRect(const MathUtil::Rectangle& rc) {} virtual void SetTexture(u32 index, const AbstractTexture* texture) {}