diff --git a/drape/shaders/route_arrow_fragment_shader.fsh b/drape/shaders/route_arrow_fragment_shader.fsh index 6e9a2d5a1a..6fb2e63fdb 100644 --- a/drape/shaders/route_arrow_fragment_shader.fsh +++ b/drape/shaders/route_arrow_fragment_shader.fsh @@ -22,8 +22,9 @@ void main(void) } } + vec4 color = texture2D(u_colorTex, uv); if (needDiscard) - discard; + color.a = 0.0; - gl_FragColor = texture2D(u_colorTex, uv); + gl_FragColor = color; } diff --git a/drape/shaders/route_fragment_shader.fsh b/drape/shaders/route_fragment_shader.fsh index 3fd7c5e9c6..3d32091413 100644 --- a/drape/shaders/route_fragment_shader.fsh +++ b/drape/shaders/route_fragment_shader.fsh @@ -5,8 +5,9 @@ uniform float u_clipLength; void main(void) { + vec4 color = u_color; if (v_length.x < u_clipLength) - discard; + color.a = 0.0; - gl_FragColor = u_color; + gl_FragColor = color; }