First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

15
externals/dds-ktx/ctexview/quad.vert vendored Normal file
View File

@@ -0,0 +1,15 @@
#version 450
layout (location = POSITION) in vec2 a_pos;
layout (location = TEXCOORD0) in vec3 a_uv;
layout (location = TEXCOORD0) out vec3 f_uv;
layout (binding = 0, std140) uniform globals {
mat4 proj_mat;
};
void main() {
gl_Position = proj_mat * vec4(a_pos, 0, 1.0);
f_uv = a_uv;
}