Init Repository

This commit is contained in:
MrFloor
2022-01-20 02:09:24 +01:00
commit c97ab16096
13 changed files with 11793 additions and 0 deletions

6
shaders/vertex2.glsl Normal file
View File

@@ -0,0 +1,6 @@
#version 330
layout (location = 0) in vec3 aPos;
void main() {
gl_Position = vec4(aPos, 1.0);
}