Add chess GUI and move generation

This commit is contained in:
2026-05-19 16:05:53 -08:00
parent b36f5b0b84
commit 4131c93f99
69 changed files with 80468 additions and 218 deletions
+11
View File
@@ -0,0 +1,11 @@
#version 450
layout(set = 0, binding = 0) uniform sampler2D piece_texture;
layout(location = 0) in vec4 frag_color;
layout(location = 1) in vec2 frag_uv;
layout(location = 0) out vec4 out_color;
void main() {
out_color = texture(piece_texture, frag_uv) * frag_color;
}