upload after that funky crash

This commit is contained in:
xenomxrph
2026-05-14 21:16:36 +02:00
parent d4754a98dd
commit 9bc93b1f58
54 changed files with 7522 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
void mainImage( out vec4 fragColor, in vec2 fragCoord )
{
vec2 uv = fragCoord/iResolution.xy;
vec4 color = texture(iChannel0, uv);
fragColor = vec4(1.0 - color.x, 1.0 - color.y, 1.0 - color.z, color.w);
}