From f039149198657c1891e1c6462ed30c31ed4b8486 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 15 Feb 2019 11:59:50 +1000 Subject: Move most backend functionality to VideoCommon --- Source/Core/VideoCommon/PixelShaderManager.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Source/Core/VideoCommon/PixelShaderManager.cpp') diff --git a/Source/Core/VideoCommon/PixelShaderManager.cpp b/Source/Core/VideoCommon/PixelShaderManager.cpp index 3ff6f9f073..7799a0abcb 100644 --- a/Source/Core/VideoCommon/PixelShaderManager.cpp +++ b/Source/Core/VideoCommon/PixelShaderManager.cpp @@ -522,9 +522,7 @@ void PixelShaderManager::SetBlendModeChanged() void PixelShaderManager::SetBoundingBoxActive(bool active) { - const bool enable = - active && g_ActiveConfig.bBBoxEnable && g_ActiveConfig.BBoxUseFragmentShaderImplementation(); - + const bool enable = active && g_ActiveConfig.bBBoxEnable; if (enable == (constants.bounding_box != 0)) return; -- cgit v1.2.3