mirrored from https://projects.blender.org/blender/blender.git
-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy patheffect_bloom_frag.glsl
More file actions
172 lines (140 loc) · 5.09 KB
/
Copy patheffect_bloom_frag.glsl
File metadata and controls
172 lines (140 loc) · 5.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* SPDX-FileCopyrightText: 2015-2016 Keijiro Takahashi
* SPDX-FileCopyrightText: 2017-2022 Blender Authors
*
* SPDX-License-Identifier: MIT AND GPL-2.0-or-later */
/* Original implementation by Keijiro Takahashi (MIT license).
* Blender integration by Clément Foucault. */
#pragma BLENDER_REQUIRE(common_math_lib.glsl)
/* -------------- Utils ------------- */
/* 3-tap median filter */
vec3 median(vec3 a, vec3 b, vec3 c)
{
return a + b + c - min(min(a, b), c) - max(max(a, b), c);
}
/* ------------- Filters ------------ */
vec3 downsample_filter_high(sampler2D tex, vec2 uv, vec2 texelSize)
{
/* Downsample with a 4x4 box filter + anti-flicker filter */
vec4 d = texelSize.xyxy * vec4(-1, -1, +1, +1);
vec3 s1 = textureLod(tex, uv + d.xy, 0.0).rgb;
vec3 s2 = textureLod(tex, uv + d.zy, 0.0).rgb;
vec3 s3 = textureLod(tex, uv + d.xw, 0.0).rgb;
vec3 s4 = textureLod(tex, uv + d.zw, 0.0).rgb;
/* Karis's luma weighted average (using brightness instead of luma) */
float s1w = 1.0 / (max_v3(s1) + 1.0);
float s2w = 1.0 / (max_v3(s2) + 1.0);
float s3w = 1.0 / (max_v3(s3) + 1.0);
float s4w = 1.0 / (max_v3(s4) + 1.0);
float one_div_wsum = 1.0 / (s1w + s2w + s3w + s4w);
return (s1 * s1w + s2 * s2w + s3 * s3w + s4 * s4w) * one_div_wsum;
}
vec3 downsample_filter(sampler2D tex, vec2 uv, vec2 texelSize)
{
/* Downsample with a 4x4 box filter */
vec4 d = texelSize.xyxy * vec4(-1, -1, +1, +1);
vec3 s;
s = textureLod(tex, uv + d.xy, 0.0).rgb;
s += textureLod(tex, uv + d.zy, 0.0).rgb;
s += textureLod(tex, uv + d.xw, 0.0).rgb;
s += textureLod(tex, uv + d.zw, 0.0).rgb;
return s * (1.0 / 4);
}
vec3 upsample_filter_high(sampler2D tex, vec2 uv, vec2 texelSize)
{
/* 9-tap bilinear upsampler (tent filter) */
vec4 d = texelSize.xyxy * vec4(1, 1, -1, 0) * sampleScale;
vec3 s;
s = textureLod(tex, uv - d.xy, 0.0).rgb;
s += textureLod(tex, uv - d.wy, 0.0).rgb * 2;
s += textureLod(tex, uv - d.zy, 0.0).rgb;
s += textureLod(tex, uv + d.zw, 0.0).rgb * 2;
s += textureLod(tex, uv, 0.0).rgb * 4;
s += textureLod(tex, uv + d.xw, 0.0).rgb * 2;
s += textureLod(tex, uv + d.zy, 0.0).rgb;
s += textureLod(tex, uv + d.wy, 0.0).rgb * 2;
s += textureLod(tex, uv + d.xy, 0.0).rgb;
return s * (1.0 / 16.0);
}
vec3 upsample_filter(sampler2D tex, vec2 uv, vec2 texelSize)
{
/* 4-tap bilinear upsampler */
vec4 d = texelSize.xyxy * vec4(-1, -1, +1, +1) * (sampleScale * 0.5);
vec3 s;
s = textureLod(tex, uv + d.xy, 0.0).rgb;
s += textureLod(tex, uv + d.zy, 0.0).rgb;
s += textureLod(tex, uv + d.xw, 0.0).rgb;
s += textureLod(tex, uv + d.zw, 0.0).rgb;
return s * (1.0 / 4.0);
}
/* ----------- Steps ----------- */
vec4 step_blit(void)
{
vec2 uv = uvcoordsvar.xy + sourceBufferTexelSize.xy * 0.5;
#ifdef HIGH_QUALITY /* Anti flicker */
vec3 d = sourceBufferTexelSize.xyx * vec3(1, 1, 0);
vec3 s0 = safe_color(textureLod(sourceBuffer, uvcoordsvar.xy, 0.0).rgb);
vec3 s1 = safe_color(textureLod(sourceBuffer, uvcoordsvar.xy - d.xz, 0.0).rgb);
vec3 s2 = safe_color(textureLod(sourceBuffer, uvcoordsvar.xy + d.xz, 0.0).rgb);
vec3 s3 = safe_color(textureLod(sourceBuffer, uvcoordsvar.xy - d.zy, 0.0).rgb);
vec3 s4 = safe_color(textureLod(sourceBuffer, uvcoordsvar.xy + d.zy, 0.0).rgb);
vec3 m = median(median(s0.rgb, s1, s2), s3, s4);
#else
vec3 s0 = safe_color(textureLod(sourceBuffer, uvcoordsvar.xy, 0.0).rgb);
vec3 m = s0.rgb;
#endif
/* Pixel brightness */
float br = max_v3(m);
/* Under-threshold part: quadratic curve */
float rq = clamp(br - curveThreshold.x, 0.0, curveThreshold.y);
rq = curveThreshold.z * rq * rq;
/* Combine and apply the brightness response curve. */
m *= max(rq, br - curveThreshold.w) / max(1e-5, br);
/* Clamp pixel intensity if clamping enabled */
if (clampIntensity > 0.0) {
br = max(1e-5, max_v3(m));
m *= 1.0 - max(0.0, br - clampIntensity) / br;
}
return vec4(m, 1.0);
}
vec4 step_downsample(void)
{
#ifdef HIGH_QUALITY /* Anti flicker */
vec3 samp = downsample_filter_high(sourceBuffer, uvcoordsvar.xy, sourceBufferTexelSize);
#else
vec3 samp = downsample_filter(sourceBuffer, uvcoordsvar.xy, sourceBufferTexelSize);
#endif
return vec4(samp, 1.0);
}
vec4 step_upsample(void)
{
#ifdef HIGH_QUALITY
vec3 blur = upsample_filter_high(sourceBuffer, uvcoordsvar.xy, sourceBufferTexelSize);
#else
vec3 blur = upsample_filter(sourceBuffer, uvcoordsvar.xy, sourceBufferTexelSize);
#endif
vec3 base = textureLod(baseBuffer, uvcoordsvar.xy, 0.0).rgb;
return vec4(base + blur, 1.0);
}
vec4 step_resolve(void)
{
#ifdef HIGH_QUALITY
vec3 blur = upsample_filter_high(sourceBuffer, uvcoordsvar.xy, sourceBufferTexelSize);
#else
vec3 blur = upsample_filter(sourceBuffer, uvcoordsvar.xy, sourceBufferTexelSize);
#endif
vec4 base = bloomAddBase ? textureLod(baseBuffer, uvcoordsvar.xy, 0.0) : vec4(0.0);
vec3 cout = base.rgb + blur * bloomColor;
return vec4(cout, base.a);
}
void main(void)
{
#if defined(STEP_BLIT)
FragColor = step_blit();
#elif defined(STEP_DOWNSAMPLE)
FragColor = step_downsample();
#elif defined(STEP_UPSAMPLE)
FragColor = step_upsample();
#elif defined(STEP_RESOLVE)
FragColor = step_resolve();
#endif
}