-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathFilmicAnamorphSharpen.fx
306 lines (259 loc) · 7.65 KB
/
FilmicAnamorphSharpen.fx
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
/*------------------.
| :: Description :: |
'-------------------/
Filmic Anamorph Sharpen PS (version 1.5.0)
Copyright:
This code © 2018-2023 Jakub Maximilian Fober
Some changes by ccritchfield https://github.com/ccritchfield
License:
This work is licensed under the Creative Commons
Attribution-ShareAlike 4.0 International License.
To view a copy of this license, visit
http://creativecommons.org/licenses/by-sa/4.0/
*/
/*--------------.
| :: Commons :: |
'--------------*/
#include "ReShade.fxh"
#include "ReShadeUI.fxh"
#include "ColorConversion.fxh"
#include "LinearGammaWorkflow.fxh"
/*-----------.
| :: Menu :: |
'-----------*/
uniform float Strength
< __UNIFORM_SLIDER_FLOAT1
ui_label = "Strength";
ui_min = 0.0; ui_max = 100.0; ui_step = 0.01;
> = 60.0;
uniform float Offset
< __UNIFORM_SLIDER_FLOAT1
ui_units = " pixel";
ui_label = "Radius";
ui_tooltip = "High-pass cross offset in pixels";
ui_min = 0.0; ui_max = 2.0; ui_step = 0.01;
> = 0.1;
uniform float Clamp
< __UNIFORM_SLIDER_FLOAT1
ui_label = "Clamping";
ui_min = 0.5; ui_max = 1.0; ui_step = 0.001;
> = 0.65;
uniform bool UseMask
< __UNIFORM_INPUT_BOOL1
ui_label = "Sharpen only center";
ui_tooltip = "Sharpen only in center of the image";
> = false;
uniform bool DepthMask
< __UNIFORM_INPUT_BOOL1
ui_label = "Enable depth rim masking";
ui_tooltip = "Depth high-pass mask switch";
ui_category = "Depth mask";
ui_category_closed = true;
> = false;
uniform int DepthMaskContrast
< __UNIFORM_DRAG_INT1
ui_label = "Edges mask strength";
ui_tooltip = "Depth high-pass mask amount";
ui_category = "Depth mask";
ui_min = 0; ui_max = 2000; ui_step = 1;
> = 128;
uniform bool Preview
< __UNIFORM_INPUT_BOOL1
ui_label = "Preview sharpen layer";
ui_tooltip = "Preview sharpen layer and mask for adjustment.\n"
"If you don't see red strokes,\n"
"try changing Preprocessor Definitions in the Settings tab.";
ui_category = "Debug View";
ui_category_closed = true;
> = false;
/*---------------.
| :: Textures :: |
'---------------*/
// Define screen texture with mirror tiles
sampler BackBuffer
{
Texture = ReShade::BackBufferTex;
AddressU = MIRROR;
AddressV = MIRROR;
};
/*----------------.
| :: Functions :: |
'----------------*/
// Overlay blending mode
float Overlay(float LayerA, float LayerB)
{
float MinA = min(LayerA, 0.5);
float MinB = min(LayerB, 0.5);
float MaxA = max(LayerA, 0.5);
float MaxB = max(LayerB, 0.5);
return 2f*(MinA*MinB+MaxA+MaxB-MaxA*MaxB)-1.5;
}
// Overlay blending mode for one input
float Overlay(float LayerAB)
{
float MinAB = min(LayerAB, 0.5);
float MaxAB = max(LayerAB, 0.5);
return 2f*(MinAB*MinAB+MaxAB+MaxAB-MaxAB*MaxAB)-1.5;
}
/*--------------.
| :: Shaders :: |
'--------------*/
// Sharpen pass
float3 FilmicAnamorphSharpenPS(
float4 pos : SV_Position,
float2 UvCoord : TEXCOORD
) : SV_Target
{
// Sample display image
float3 Source = GammaConvert::to_linear(tex2D(BackBuffer, UvCoord).rgb);
// Generate radial mask
float Mask;
if (UseMask)
{
// Generate radial mask
Mask = 1f-length(UvCoord*2f-1f);
Mask = Overlay(Mask) * Strength;
// Bypass
if (Mask<=0) return GammaConvert::to_display(Source);
}
else Mask = Strength;
// Get pixel size
float2 Pixel = BUFFER_PIXEL_SIZE;
if (DepthMask)
{
/*
// original
float2 DepthPixel = Pixel*Offset+Pixel;
Pixel *= Offset;
*/
// !!! calc pixel*offset once, use twice
float2 PixelOffset = Pixel * Offset;
float2 DepthPixel = PixelOffset + Pixel;
Pixel = PixelOffset;
// Sample display depth image
float SourceDepth = ReShade::GetLinearizedDepth(UvCoord);
float2 NorSouWesEst[4] = {
float2(UvCoord.x, UvCoord.y + Pixel.y),
float2(UvCoord.x, UvCoord.y - Pixel.y),
float2(UvCoord.x + Pixel.x, UvCoord.y),
float2(UvCoord.x - Pixel.x, UvCoord.y)
};
float2 DepthNorSouWesEst[4] = {
float2(UvCoord.x, UvCoord.y + DepthPixel.y),
float2(UvCoord.x, UvCoord.y - DepthPixel.y),
float2(UvCoord.x + DepthPixel.x, UvCoord.y),
float2(UvCoord.x - DepthPixel.x, UvCoord.y)
};
// Luma high-pass color
// Luma high-pass depth
float HighPassColor = 0f, DepthMask = 0f;
[unroll]for(int s=0; s<4; s++)
{
HighPassColor +=
ColorConvert::RGB_to_Luma(
GammaConvert::to_linear(
tex2D(BackBuffer, NorSouWesEst[s]).rgb
));
DepthMask +=
ReShade::GetLinearizedDepth(NorSouWesEst[s])
+ReShade::GetLinearizedDepth(DepthNorSouWesEst[s]);
}
HighPassColor = 0.5-0.5*(HighPassColor*0.25-ColorConvert::RGB_to_Luma(Source));
DepthMask = 1f-DepthMask*0.125+SourceDepth;
DepthMask = min(1f, DepthMask)+1f-max(1f, DepthMask);
DepthMask = saturate(DepthMaskContrast*DepthMask+1f-DepthMaskContrast);
// Sharpen strength
HighPassColor = lerp(0.5, HighPassColor, Mask*DepthMask);
// Clamping sharpen
/*
// original
HighPassColor = Clamp!=1f ? max(min(HighPassColor, Clamp), 1f-Clamp) : HighPassColor;
*/
// !!! Clamp in settings above is restricted to 0.5 to 1.0
// !!! 1.0 - Clamp is the low value, while Clamp is the high value
// !!! so we can literally just use the clamp() func instead of min/max.
// !!! not sure if author was trying to take advantage of some kind of
// !!! compiler "cheat" using min/max instead of clamp to improve
// !!! performance. doesn't make sense to min/max otherwise.
HighPassColor = Clamp!=1f ? clamp(HighPassColor, 1f-Clamp, Clamp ) : HighPassColor;
float3 Sharpen = float3(
Overlay(Source.r, HighPassColor),
Overlay(Source.g, HighPassColor),
Overlay(Source.b, HighPassColor)
);
if(Preview) // Preview mode ON
{
float PreviewChannel = lerp(HighPassColor, HighPassColor*DepthMask, 0.5);
return
GammaConvert::to_display(float3(
1f-DepthMask * (1f-HighPassColor),
PreviewChannel,
PreviewChannel
));
}
return GammaConvert::to_display(Sharpen);
}
else
{
Pixel *= Offset;
float2 NorSouWesEst[4] = {
float2(UvCoord.x, UvCoord.y + Pixel.y),
float2(UvCoord.x, UvCoord.y - Pixel.y),
float2(UvCoord.x + Pixel.x, UvCoord.y),
float2(UvCoord.x - Pixel.x, UvCoord.y)
};
// Luma high-pass color
float HighPassColor = 0f;
[unroll] for(uint s=0u; s<4u; s++)
HighPassColor +=
ColorConvert::RGB_to_Luma(
GammaConvert::to_linear(
tex2D(BackBuffer, NorSouWesEst[s]).rgb
));
// !!! added space above to make it more obvious
// !!! that loop is now a one-liner in this else branch
// !!! where-as loop in branch above was multi-part
HighPassColor = 0.5-0.5*(HighPassColor*0.25-ColorConvert::RGB_to_Luma(Source));
// Sharpen strength
HighPassColor = lerp(0.5, HighPassColor, Mask);
// Clamping sharpen
/*
// original
HighPassColor = Clamp!=1f ? max(min(HighPassColor, Clamp), 1f-Clamp) : HighPassColor;
*/
// !!! Clamp in settings above is restricted to 0.5 to 1.0
// !!! 1.0 - Clamp is the low value, while Clamp is the high value
// !!! so we can literally just use the clamp() func instead of min/max.
// !!! not sure if author was trying to take advantage of some kind of
// !!! compiler "cheat" using min/max instead of clamp to improve
// !!! performance. doesn't make sense to min/max otherwise.
HighPassColor = Clamp!=1f ? clamp(HighPassColor, 1f-Clamp, Clamp) : HighPassColor;
float3 Sharpen = float3(
Overlay(Source.r, HighPassColor),
Overlay(Source.g, HighPassColor),
Overlay(Source.b, HighPassColor)
);
return GammaConvert::to_display(
Preview // preview mode ON
? HighPassColor
: Sharpen
);
}
}
/*-------------.
| :: Output :: |
'-------------*/
technique FilmicAnamorphSharpen
<
ui_label = "Filmic Anamorphic Sharpen";
ui_tooltip =
"This effect © 2018-2023 Jakub Maksymilian Fober\n"
"Licensed under CC BY-SA 4.0";
>
{
pass
{
VertexShader = PostProcessVS;
PixelShader = FilmicAnamorphSharpenPS;
}
}