Add an example cube (tutorials!)

This commit is contained in:
Ben Visness
2018-05-27 16:22:54 -05:00
parent fdea881102
commit 2d71b1b11b
6 changed files with 328 additions and 54 deletions

View File

@@ -0,0 +1,9 @@
#version 330 core
in vec3 fragmentColor;
out vec3 color;
void main() {
color = fragmentColor;
}