From 40b4ad8b2613d30e11e4874dfd32dfc120d23773 Mon Sep 17 00:00:00 2001 From: Marisa Kirisame Date: Thu, 4 Jul 2019 22:20:03 +0200 Subject: [PATCH] typo fix --- shaders/glsl/mfx_borderblur.fp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shaders/glsl/mfx_borderblur.fp b/shaders/glsl/mfx_borderblur.fp index ab80c77..843fa9f 100644 --- a/shaders/glsl/mfx_borderblur.fp +++ b/shaders/glsl/mfx_borderblur.fp @@ -4,7 +4,7 @@ */ void main() { - float gauss4[4] = float4[]( 0.270682, 0.216745, 0.111281, 0.036633 ); + float gauss4[4] = float[]( 0.270682, 0.216745, 0.111281, 0.036633 ); vec2 coord = TexCoord; vec4 res = texture(InputTexture,coord); vec2 bresl = textureSize(InputTexture,0);