Big reorganization

This commit is contained in:
Matt Keeter 2014-03-13 06:17:51 -07:00
parent b903eced97
commit 44fb4197ca
11 changed files with 45 additions and 40 deletions

7
gl/quad.frag Normal file
View file

@ -0,0 +1,7 @@
#version 120
varying vec3 frag_color;
void main() {
gl_FragColor = vec4(frag_color, 1.0);
}