Added shader packs

This commit is contained in:
Digital Artifex
2025-08-19 09:33:45 -04:00
parent 9ea2302b95
commit c8f3f1e981
82 changed files with 3261 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
void mainImage(out vec4 o, vec2 u) {
o = sampleDof(iChannel0, iResolution.xy, vec2(.71, -.71), u);
float r = floor(log2(iResolution.y) - 5.5) + .5;
for(int i = 0; i < 4; i++)
o += texture(iChannel0, u/iResolution.xy, r+float(i*2))*.03;
vec3 x = o.rgb;
o = vec4((x*(2.51*x+.03))/(x*(2.43*x+.59)+.14), 1.);
}