@@ -8,6 +8,8 @@ let starShader;
8
8
let starStrokeShader ;
9
9
let stars ;
10
10
let ditheringShader ;
11
+ let originalFrameBuffer ;
12
+ let blurredFrameBuffer ;
11
13
12
14
function starShaderCallback ( ) {
13
15
const time = uniformFloat ( ( ) => millis ( ) ) ;
@@ -30,47 +32,63 @@ function ditheringCallback() {
30
32
}
31
33
32
34
function grayscale ( col ) {
33
- return
35
+ return dot ( [ col . x , col . y , col . z ] , [ 0.21 , 0.72 , 0.07 ] )
34
36
}
35
37
36
38
getColor ( ( input , canvasContent ) => {
37
39
let col = texture ( canvasContent , input . texCoord ) ;
38
40
col . z = 0.55 ;
39
41
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
44
45
return col ;
45
46
} ) ;
46
47
}
47
48
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
+
48
63
async function setup ( ) {
49
64
createCanvas ( windowWidth , windowHeight , WEBGL ) ;
50
65
stars = buildGeometry ( ( ) => sphere ( 20 , 3 , 3 ) )
51
66
starShader = baseMaterialShader ( ) . modify ( starShaderCallback ) ;
52
67
starStrokeShader = baseStrokeShader ( ) . modify ( starShaderCallback )
53
68
ditheringShader = baseFilterShader ( ) . modify ( ditheringCallback ) ;
69
+ originalFrameBuffer = createFramebuffer ( ) ;
70
+ blurredFrameBuffer = createFramebuffer ( ) ;
71
+ bloomShader = baseFilterShader ( ) . modify ( bloom ) ;
54
72
}
55
73
56
74
function draw ( ) {
57
- background ( 0 , 200 , 240 ) ;
75
+ originalFrameBuffer . begin ( ) ;
58
76
orbitControl ( ) ;
59
- // noStroke();
60
-
77
+ background ( 0 , 0 , 0 ) ;
61
78
push ( ) ;
62
79
stroke ( 255 , 0 , 255 )
63
80
fill ( 255 , 200 , 255 )
64
81
strokeShader ( starStrokeShader )
65
82
shader ( starShader ) ;
66
83
model ( stars , 100 ) ;
67
84
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 ) ;
76
94
}
0 commit comments