This commit is contained in:
2026-08-26 18:58:45 +02:00
parent 2be178570e
commit b93a9f4db5
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,6 +10,6 @@ out vec4 fragColor;
uniform sampler2D iTex0;
void main() {
vec3 c = gauss(iTex0, vUV, 2, 2 / max(iResolution.x, iResolution.y)).xyz;
vec3 c = gauss(iTex0, vUV, 3, 2 / max(iResolution.x, iResolution.y)).xyz;
fragColor = vec4(c, 1);
}