From ee6154c8428b3c58fc49f4545289bfec8f2de725 Mon Sep 17 00:00:00 2001 From: Urja Rannikko Date: Fri, 17 Jul 2020 19:19:23 +0000 Subject: [PATCH] GAL: Remove dead code regarding SHADER_LINE_B in the fragment shader The only test for it was only called from a function that's called if the mode is SHADER_LINE_A, not B. (cherry picked from commit 65ceeebc71f646b542d52045175635ae735d3da0) --- common/gal/opengl/gl_builtin_shaders.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/common/gal/opengl/gl_builtin_shaders.cpp b/common/gal/opengl/gl_builtin_shaders.cpp index fe4ee66542..110cc1fa82 100644 --- a/common/gal/opengl/gl_builtin_shaders.cpp +++ b/common/gal/opengl/gl_builtin_shaders.cpp @@ -282,7 +282,6 @@ const float SHADER_FILLED_CIRCLE = 2.0; const float SHADER_STROKED_CIRCLE = 3.0; const float SHADER_FONT = 4.0; const float SHADER_LINE_A = 5.0; -const float SHADER_LINE_B = 6.0; varying vec4 shaderParams; varying vec2 circleCoords; @@ -302,12 +301,6 @@ void filledCircle( vec2 aCoord ) float pixelSegDistance( vec2 aCoord ) { - if( shaderParams[0] == SHADER_LINE_B ) - { - gl_FragColor = gl_Color; - return 0.0; - } - float aspect = shaderParams[1]; float dist; vec2 v = vec2( 1.0 - ( aspect - abs( aCoord.s ) ), aCoord.t );