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,14 @@
#version 300 es
precision highp float;
in vec3 vColor;
in float vAlpha;
in vec2 vQuadCoord;
out vec4 fragColor;
void main() {
float dist = length(vQuadCoord);
float falloff = smoothstep(1.0, 0.5, dist);
fragColor = vec4(vColor, vAlpha * falloff);
}