GPT is reall good at generating comments and fixing spelling error

This commit is contained in:
2025-12-23 13:28:51 -06:00
parent 9f1555d6e0
commit 9735df3ecb
11 changed files with 917 additions and 355 deletions

View File

@@ -0,0 +1,11 @@
#version 300 es
precision highp float;
in vec2 position; // Fullscreen quad vertices
out vec2 vTexCoord;
void main() {
vTexCoord = position * 0.5 + 0.5; // [-1,1] -> [0,1]
gl_Position = vec4(position, 0.0, 1.0);
}