commit | 21625d729cc7050fc1b0991e1753b0b5f45a6db0 | [log] [tgz] |
---|---|---|
author | Brian <brian@nostromo.localnet.net> | Sun Feb 25 12:46:56 2007 -0700 |
committer | Brian <brian@nostromo.localnet.net> | Sun Feb 25 12:46:56 2007 -0700 |
tree | cea34a57ee5af453e87022786930bd1d3674a3c7 | |
parent | fbc4929185ca1dc7d729ec737095ef0895f5b570 [diff] [blame] |
output texcoord in vertex program
diff --git a/progs/glsl/noise.c b/progs/glsl/noise.c index e115da3..a26a805 100644 --- a/progs/glsl/noise.c +++ b/progs/glsl/noise.c
@@ -17,6 +17,7 @@ static const char *VertShaderText = "void main() {\n" " gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;\n" + " gl_TexCoord[0] = gl_MultiTexCoord0;\n" "}\n"; static const char *FragShaderText =