Skip to content

Commit 55a09ab

Browse files
committed
bloom filter
1 parent e7914df commit 55a09ab

File tree

1 file changed

+34
-16
lines changed

1 file changed

+34
-16
lines changed

preview/global/sketch.js

+34-16
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ let starShader;
88
let starStrokeShader;
99
let stars;
1010
let ditheringShader;
11+
let originalFrameBuffer;
12+
let blurredFrameBuffer;
1113

1214
function starShaderCallback() {
1315
const time = uniformFloat(() => millis());
@@ -30,47 +32,63 @@ function ditheringCallback() {
3032
}
3133

3234
function grayscale(col) {
33-
return
35+
return dot([col.x, col.y, col.z], [0.21, 0.72, 0.07])
3436
}
3537

3638
getColor((input, canvasContent) => {
3739
let col = texture(canvasContent, input.texCoord);
3840
col.z = 0.55;
3941
col += rand(input.texCoord + time/10000000000) * 0.15 - 0.05;
40-
let greyscale = dot([col.x, col.y, col.z], [0.21, 0.72, 0.07]);
41-
// col.x = greyscale;
42-
// col.y = greyscale;
43-
// col.z = greyscale;
42+
let greyscaleValue = grayscale(col);
43+
col.x = greyscaleValue
44+
col.y = greyscaleValue
4445
return col;
4546
});
4647
}
4748

49+
function bloom() {
50+
const blurred = uniformTexture(() => blurredFrameBuffer);
51+
const original = uniformTexture(() => originalFrameBuffer);
52+
53+
getColor((input, canvasContent) => {
54+
const blurredCol = texture(blurred, input.texCoord);
55+
const originalCol = texture(original, input.texCoord);
56+
const brightPass = max(originalCol - 0.0, 0.0) * 3.0;
57+
// const bloom = original + blurred * brightPass;
58+
// return bloom;
59+
return texture(blurred, input.texCoord) + texture(original, input.texCoord);
60+
});
61+
}
62+
4863
async function setup(){
4964
createCanvas(windowWidth, windowHeight, WEBGL);
5065
stars = buildGeometry(() => sphere(20, 3, 3))
5166
starShader = baseMaterialShader().modify(starShaderCallback);
5267
starStrokeShader = baseStrokeShader().modify(starShaderCallback)
5368
ditheringShader = baseFilterShader().modify(ditheringCallback);
69+
originalFrameBuffer = createFramebuffer();
70+
blurredFrameBuffer = createFramebuffer();
71+
bloomShader = baseFilterShader().modify(bloom);
5472
}
5573

5674
function draw(){
57-
background(0,200,240);
75+
originalFrameBuffer.begin();
5876
orbitControl();
59-
// noStroke();
60-
77+
background(0,0,0);
6178
push();
6279
stroke(255,0,255)
6380
fill(255,200,255)
6481
strokeShader(starStrokeShader)
6582
shader(starShader);
6683
model(stars, 100);
6784
pop();
68-
filter(ditheringShader)
69-
// push();
70-
// shader(baseMaterialShader());
71-
// noStroke();
72-
// rotateX(HALF_PI);
73-
// translate(0, 0, -250);
74-
// plane(10000)
75-
// pop();
85+
originalFrameBuffer.end();
86+
87+
blurredFrameBuffer.begin();
88+
image(originalFrameBuffer, -windowWidth/2, -windowHeight/2)
89+
filter(BLUR)
90+
blurredFrameBuffer.end();
91+
92+
// image(originalFrameBuffer, -windowWidth/2, -windowHeight/2)
93+
filter(bloomShader);
7694
}

0 commit comments

Comments
 (0)