Too much changes

This commit is contained in:
2025-03-09 04:50:41 +03:00
parent e45d21b621
commit b1fb15fa1f
20 changed files with 255 additions and 44 deletions

10
shaders/debug_draw.ps Normal file
View File

@@ -0,0 +1,10 @@
#version 330 core
in vec3 v_color;
out vec4 fragColor;
void main()
{
fragColor = vec4(v_color, 1.0);
}