From 7f7488620d1a4644cec64316bd525aa86474e470 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 13 Oct 2012 15:45:38 +0200 Subject: [PATCH] Fix a GLSL warning. --- mipmap_needing_effect.frag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } -- 2.39.2