]> git.sesse.net Git - movit/commitdiff
Fix a GLSL warning.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Oct 2012 13:45:38 +0000 (15:45 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sat, 13 Oct 2012 13:45:38 +0000 (15:45 +0200)
mipmap_needing_effect.frag

index ef4a5166cee96138a7a463754e152664b3f84c84..2bff7842b0ec4156da20b76d2d6e51e73bc8ffa2 100644 (file)
@@ -1,5 +1,5 @@
 // Used only for testing.
 vec4 FUNCNAME(vec2 tc)
 {
 // Used only for testing.
 vec4 FUNCNAME(vec2 tc)
 {
-       return INPUT(tc * vec2(4.0f));
+       return INPUT(tc * vec2(4.0));
 }
 }