Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
unsharp_masking_fragment_shader.h
1//import <fullscreen/current_profile/fragment_shader_preamble.h>
2//import <GLUP/defs.h>
3
4glup_in vec2 tex_coord;
5
6uniform sampler2D blur_texture;
7uniform sampler2D depth_texture;
8
9uniform bool do_positive_shadows; // = false;
10uniform float shadows_gamma ; // = 0.8;
11uniform float shadows_intensity ; // = 1.0;
12uniform bool shadows_halo ; // = false;
13
14float equalize_shadow(float x) {
15 return pow(x, shadows_gamma);
16}
17
18float unsharp_masking(vec2 uv) {
19 float orig_depth = glup_texture(depth_texture,uv).x;
20 if(!shadows_halo && orig_depth == 1.0) { orig_depth = 0.5; }
21 float smoothed_depth = glup_texture(blur_texture,uv).x;
22 float result = smoothed_depth-orig_depth;
23 if(result < 0.0) {
24 result = -equalize_shadow(-result);
25 } else {
26 if(do_positive_shadows) {
27 result = equalize_shadow(result);
28 } else {
29 result = 0.0;
30 }
31 }
32 return -100.0 * shadows_intensity * result;
33}
34
35void compute_unsharp_masking() {
36 float shadow = unsharp_masking(tex_coord);
37 if(!do_positive_shadows || shadow > 0.0) {
38 glup_FragColor.rgb = vec3(0.0, 0.0, 0.0) ;
39 glup_FragColor.a = shadow;
40 } else {
41 glup_FragColor.rgb = vec3(1.0, 1.0, 1.0) ;
42 glup_FragColor.a = -shadow;
43 }
44}
45
46void main() {
47 compute_unsharp_masking();
48}
vecng< 3, Numeric::float64 > vec3
Represents points and vectors in 3d.
Definition geometry.h:65
vecng< 2, Numeric::float64 > vec2
Represents points and vectors in 2d.
Definition geometry.h:59