Mostly complete from the Python original

This commit is contained in:
Matt Keeter 2014-03-03 21:14:16 -05:00
commit 97cf902b87
18 changed files with 527 additions and 0 deletions

10
src/gl/quad.vert Normal file
View file

@ -0,0 +1,10 @@
#version 120
attribute vec2 vertex_position;
attribute vec3 vertex_color;
varying vec3 frag_color;
void main() {
gl_Position = vec4(vertex_position, 0.9, 1.0);
frag_color = vertex_color;
}