From 4e530f413e70d8ee6eb981f485cd7536cfd3d62a Mon Sep 17 00:00:00 2001 From: LuisAntonRebollo Date: Thu, 25 Dec 2014 19:40:42 +0100 Subject: [PATCH] Fix glowBlurP.glsl shader. --- Templates/Empty/game/shaders/common/postFx/gl/glowBlurP.glsl | 2 +- Templates/Full/game/shaders/common/postFx/gl/glowBlurP.glsl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Templates/Empty/game/shaders/common/postFx/gl/glowBlurP.glsl b/Templates/Empty/game/shaders/common/postFx/gl/glowBlurP.glsl index 910c512b6..d00bee26f 100644 --- a/Templates/Empty/game/shaders/common/postFx/gl/glowBlurP.glsl +++ b/Templates/Empty/game/shaders/common/postFx/gl/glowBlurP.glsl @@ -40,7 +40,7 @@ void main() { vec4 kernel = vec4( 0.175, 0.275, 0.375, 0.475 ) * 0.5f; - vec4 OUT_col = vec4(0); + OUT_col = vec4(0); OUT_col += texture( diffuseMap, uv0 ) * kernel.x; OUT_col += texture( diffuseMap, uv1 ) * kernel.y; OUT_col += texture( diffuseMap, uv2 ) * kernel.z; diff --git a/Templates/Full/game/shaders/common/postFx/gl/glowBlurP.glsl b/Templates/Full/game/shaders/common/postFx/gl/glowBlurP.glsl index 0a70fb6aa..9ebca32fa 100644 --- a/Templates/Full/game/shaders/common/postFx/gl/glowBlurP.glsl +++ b/Templates/Full/game/shaders/common/postFx/gl/glowBlurP.glsl @@ -40,7 +40,7 @@ void main() { vec4 kernel = vec4( 0.175, 0.275, 0.375, 0.475 ) * 0.5f; - vec4 OUT_col = vec4(0); + OUT_col = vec4(0); OUT_col += texture( diffuseMap, uv0 ) * kernel.x; OUT_col += texture( diffuseMap, uv1 ) * kernel.y; OUT_col += texture( diffuseMap, uv2 ) * kernel.z;