revert to vanilla assets

This commit is contained in:
2026-07-09 21:14:29 -04:00
parent 826e8967a2
commit 223b733bdc
2126 changed files with 38030 additions and 3856 deletions

View File

@@ -0,0 +1,11 @@
#version 330
out vec2 texCoord;
void main() {
vec2 uv = vec2((gl_VertexID << 1) & 2, gl_VertexID & 2);
vec4 pos = vec4(uv * vec2(2, 2) + vec2(-1, -1), 0, 1);
gl_Position = pos;
texCoord = uv;
}