feat: basic triangle rendering

This commit is contained in:
Chance 2025-04-16 01:24:10 +00:00 committed by BitSyndicate
parent 06648d8da2
commit a8323fd698
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 443E4198D6BBA6DE
11 changed files with 1828 additions and 67 deletions

8
shaders/shader.frag Normal file
View file

@ -0,0 +1,8 @@
#version 450
layout(location = 0) in vec3 color;
layout(location = 0) out vec4 out_color;
void main() {
out_color = vec4(color, 1.0);
}