From dcbc653b90eb4f3e67939a090a7777cb6d17c3cc Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 25 May 2015 18:39:36 -0400 Subject: rasterizer: Remove unnecessary 'using' for BlendEquation. --- src/video_core/rasterizer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/video_core/rasterizer.cpp') diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index 2613e398..e0f8d9e6 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp @@ -815,10 +815,9 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0, } }; - using BlendEquation = Regs::BlendEquation; static auto EvaluateBlendEquation = [](const Math::Vec4& src, const Math::Vec4& srcfactor, const Math::Vec4& dest, const Math::Vec4& destfactor, - BlendEquation equation) { + Regs::BlendEquation equation) { Math::Vec4 result; auto src_result = (src * srcfactor).Cast(); -- cgit v1.2.3