progs/glsl: Fix noise GLSL compilation error on Mac OS.
authorVinson Lee <vlee@vmware.com>
Wed, 18 Nov 2009 21:50:49 +0000 (13:50 -0800)
committerVinson Lee <vlee@vmware.com>
Wed, 18 Nov 2009 21:50:49 +0000 (13:50 -0800)
progs/glsl/noise.c

index bb024b5..1148580 100644 (file)
@@ -28,7 +28,7 @@ static const char *FragShaderText =
    "   vec4 p;\n"
    "   p.xy = gl_TexCoord[0].xy;\n"
    "   p.z = Slice;\n"
-   "   p.w = 0;\n"
+   "   p.w = 0.0;\n"
    "   vec4 n = noise4(p * scale);\n"
    "   gl_FragColor = n * Scale + Bias;\n"
    "}\n";