It's friday....

This commit is contained in:
2024-08-02 14:00:33 +03:00
parent 9cb7a7592b
commit 8544a3277e
12 changed files with 13081 additions and 44 deletions

6
vertex_shader.glsl Normal file
View File

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