From: Steinar H. Gunderson Date: Sat, 13 Oct 2012 13:45:38 +0000 (+0200) Subject: Fix a GLSL warning. X-Git-Tag: 1.0~266 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=7f7488620d1a4644cec64316bd525aa86474e470;hp=117319c7626096c90052fc855a3d780d7300afc6 Fix a GLSL warning. --- diff --git a/mipmap_needing_effect.frag b/mipmap_needing_effect.frag index ef4a516..2bff784 100644 --- a/mipmap_needing_effect.frag +++ b/mipmap_needing_effect.frag @@ -1,5 +1,5 @@ // Used only for testing. vec4 FUNCNAME(vec2 tc) { - return INPUT(tc * vec2(4.0f)); + return INPUT(tc * vec2(4.0)); }