Project as is

This commit is contained in:
Gnarwhal 2024-08-07 04:28:53 +00:00
commit 80c9e2d168
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
55 changed files with 1573 additions and 0 deletions

5
res/shaders/shapes/shapes.fs Executable file
View file

@ -0,0 +1,5 @@
#version 450
void main() {
gl_FragColor = vec4(0, 1, 1, 0.5);
}

9
res/shaders/shapes/shapes.vs Executable file
View file

@ -0,0 +1,9 @@
#version 450
uniform mat4 projection;
in vec3 vertices;
void main() {
gl_Position = projection * vec4(vertices, 1);
}