chore: remove dead code

This commit is contained in:
2026-03-05 21:25:12 +08:00
parent f56e5aaa51
commit 02127c1e01
4 changed files with 58 additions and 87 deletions

View File

@@ -12,14 +12,12 @@ mat4 buildTranslate(float x, float y, float z);
uniform mat4 mv_matrix;
uniform mat4 proj_matrix;
out vec4 varyingColor;
layout (binding = 0) uniform sampler2D samp;
void main(void) {
gl_Position = proj_matrix * mv_matrix * vec4(pos, 1.0);
tc = texCoord;
varyingColor = vec4(pos, 1.0) * 0.5 + vec4(0.5, 0.5, 0.5, 0.5);
}
mat4 buildTranslate(float x, float y, float z) {