feat(render): add model loading and rendering pipeline

This commit is contained in:
2026-07-24 18:35:09 +08:00
parent f4174724c6
commit 94fed9a810
20 changed files with 393 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
#version 460
in vec2 tc;
in vec3 normal;
in vec3 vert_pos;
out vec4 color;
layout (binding = 0) uniform sampler2D samp;
void main() {
color = texture(samp, tc);
}