first commit

This commit is contained in:
2026-01-26 01:02:45 +02:00
commit 034f737dfb
21 changed files with 14629 additions and 0 deletions

11
src/shaders/shader.vert Normal file
View File

@@ -0,0 +1,11 @@
#version 460 core
layout (location = 0) in vec3 a_pos;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
void main() {
gl_Position = projection * view * model * vec4(a_pos, 1.0f);
}