ミラー

This commit is contained in:
2026-04-28 17:17:33 +09:00
commit 048335800e
23 changed files with 16142 additions and 0 deletions

10
shader/vertex.mac.glsl Normal file
View File

@@ -0,0 +1,10 @@
#version 410 core
layout(location = 0) in vec2 aPosition;
layout(location = 1) in vec2 aUv;
out vec2 vUv;
void main() {
vUv = aUv;
gl_Position = vec4(aPosition, 0.0, 1.0);
}