diff options
author | Zack Rusin <[email protected]> | 2007-10-25 07:19:02 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2007-10-25 09:04:41 -0400 |
commit | e842b5e5ba738cd214137cca95c6da64492f9f92 (patch) | |
tree | dddb448593e4152852d9a6437731d27e953f7e21 /progs/vpglsl/if.glsl | |
parent | 7073ef96824242669735a8681519e1a0cee14309 (diff) |
Test some functionality of vp using GLSL that pure vp isn't testing.
Diffstat (limited to 'progs/vpglsl/if.glsl')
-rw-r--r-- | progs/vpglsl/if.glsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/vpglsl/if.glsl b/progs/vpglsl/if.glsl new file mode 100644 index 00000000000..174f69c19c9 --- /dev/null +++ b/progs/vpglsl/if.glsl @@ -0,0 +1,7 @@ + +void main() { + gl_FrontColor = gl_Color; + gl_Position = gl_Vertex; + if (gl_Position.x < 0.5) + gl_FrontColor = vec4(1.0, 0.0, 0.0, 1.0); +} |