This commit is contained in:
pavel 2026-05-29 00:36:55 +02:00
commit 28f0d737b1
18 changed files with 3472 additions and 493 deletions

9
idk/shader.glsl.frag Normal file
View file

@ -0,0 +1,9 @@
#version 460
layout(location=0) out vec4 frag_color;
layout(location=0) in vec4 color;
void main() {
frag_color = color;
}