From 3724f8a67c79c1a40c47eb5d2b82934e7f42ec6f Mon Sep 17 00:00:00 2001 From: Emile Belanger Date: Fri, 15 Apr 2022 15:14:17 +0100 Subject: [PATCH] GLES: Fix blend flags --- wadsrc/static/shaders_gles/glsl/main.fp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/shaders_gles/glsl/main.fp b/wadsrc/static/shaders_gles/glsl/main.fp index 8f8e5f8558..99e64ca76e 100644 --- a/wadsrc/static/shaders_gles/glsl/main.fp +++ b/wadsrc/static/shaders_gles/glsl/main.fp @@ -201,7 +201,7 @@ vec4 getTexel(vec2 st) #if (DEF_BLEND_FLAGS != 0) // only apply the texture manipulation if it contains something. - texel = ApplyTextureManipulation(texel, DEF_BLEND_FLAGS); + texel = ApplyTextureManipulation(texel); #endif