add platformer window infrastructure

This commit is contained in:
2018-04-08 20:29:20 -04:00
parent edb2985a98
commit f175dd84f4
12 changed files with 328 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#version 430
void main () {
gl_Fragcolor = vec4(1);
}

View File

@@ -0,0 +1,7 @@
#version 430
in vec4 pos;
void main () {
gl_Position = pos;
}