Organize assets

This commit is contained in:
luboslenco
2019-08-22 12:05:03 +02:00
parent 2968830560
commit 436d7b2247
113 changed files with 1604 additions and 103 deletions
+12
View File
@@ -0,0 +1,12 @@
#version 450
in vec3 pos;
in vec3 col;
uniform mat4 VP;
out vec3 color;
void main() {
color = col;
gl_Position = VP * vec4(pos, 1.0);
}