Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
depth_dependent_blur_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 source_tex;
7uniform sampler2D depth_tex;
8
9uniform float blur_width;
10uniform bool vertical;
11
12const float PI = 3.14159265;
13const float threshold = 0.005;
14
15#ifdef GL_ES
16uniform vec2 source_tex_size;
17#define width float(source_tex_size.x);
18#define height float(source_tex_size.y);
19#else
20float width = float(textureSize(source_tex,0).x);
21float height = float(textureSize(source_tex,0).y);
22#endif
23
24// 1D Gaussian distribution, s is standard deviation
25float gaussian(in float x, in float s) {
26 return exp(-x * x / (2.0 * s * s)) / (s * sqrt(2.0 * PI));
27}
28
29float get_z_coeff(in vec2 pos) {
30 float zCoef = glup_texture(depth_tex, pos).r;
31 zCoef = 3.0 * (zCoef - 0.1) ;
32 return zCoef;
33}
34
35float get_z_dist(in vec2 center_pos, in vec2 other_pos) {
36 return abs(get_z_coeff(center_pos) - get_z_coeff(other_pos));
37}
38
39void compute_blur() {
40 int n = int(floor(3.0 * blur_width) - 1.0);
41 float sum = 0.0;
42 int i;
43
44 vec2 cur_pix_coords;
45 vec4 cur_pix_tex;
46 vec4 final_pix_tex = vec4(0.0);
47
48 // Calculate the sum of weights for the blur
49#ifdef GL_ES
50 for(int i = -5; i <= 5; i++) {
51#else
52 for(int i = -n; i <= n; i++) {
53#endif
54 float x_offset, y_offset;
55 if (vertical) {
56 x_offset = 0.0;
57 y_offset = float(i);
58 } else {
59 x_offset = float(i);
60 y_offset = 0.0;
61 }
62
63 x_offset = x_offset / width;
64 y_offset = y_offset / height;
65
66 cur_pix_coords = vec2(x_offset, y_offset) + tex_coord;
67
68 if(get_z_dist(tex_coord, cur_pix_coords) <= threshold) {
69 float weight = gaussian(float(i), blur_width);
70 sum += weight;
71 }
72 }
73
74 // Calculate the blurred color
75#ifdef GL_ES
76 for(int i = -5; i <= 5; i++) {
77#else
78 for(int i = -n; i <= n; i++) {
79#endif
80 float x_offset, y_offset;
81 if (vertical) {
82 x_offset = 0.0;
83 y_offset = float(i);
84 } else {
85 x_offset = float(i);
86 y_offset = 0.0;
87 }
88
89 x_offset = x_offset / width;
90 y_offset = y_offset / height;
91
92 cur_pix_coords = vec2(x_offset, y_offset) + tex_coord;
93
94 if(get_z_dist(tex_coord, cur_pix_coords) <= threshold) {
95 cur_pix_tex = glup_texture(source_tex, cur_pix_coords);
96 float weight = gaussian(float(i), blur_width) / sum;
97 final_pix_tex += cur_pix_tex * weight;
98 }
99 }
100 glup_FragColor.rgb = final_pix_tex.rgb;
101 }
102
103 void main() {
104 compute_blur();
105 }
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71
vecng< 2, Numeric::float64 > vec2
Represents points and vectors in 2d.
Definition geometry.h:59