Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
blur_fragment_shader.h
1//import <fullscreen/current_profile/fragment_shader_preamble.h>
2//import <GLUP/stdglup.h>
3
4glup_in vec2 tex_coord;
5
6uniform sampler2D source_tex;
7
8uniform float blur_width;
9uniform bool vertical;
10
11const float PI = 3.14159265;
12
13#ifdef GL_ES
14uniform vec2 source_tex_size;
15#define width float(source_tex_size.x);
16#define height float(source_tex_size.y);
17#else
18float width = float(textureSize(source_tex,0).x);
19float height = float(textureSize(source_tex,0).y);
20#endif
21
22// 1D Gaussian distribution, s is standard deviation
23float gaussian(in float x, in float s) {
24 return exp(-x * x / (2.0 * s * s)) / (s * sqrt(2.0 * PI));
25}
26
27void compute_blur() {
28 int n = int(floor(3.0 * blur_width) - 1.0);
29 float sum = 0.0;
30
31#ifdef GL_ES
32 for(int i = -5; i <= 5; i++) {
33#else
34 for(int i = -n; i <= n; i++) {
35#endif
36 float weight = gaussian(float(i), blur_width);
37 sum += weight;
38 }
39
40 vec2 cur_pix_coords;
41 vec4 cur_pix_tex;
42 vec4 final_pix_tex = vec4(0.0);
43
44#ifdef GL_ES
45 for(int i = -5; i <= 5; i++) {
46#else
47 for(int i = -n; i <= n; i++) {
48#endif
49 float x_offset, y_offset;
50 if (vertical) {
51 x_offset = 0.0;
52 y_offset = float(i);
53 } else {
54 x_offset = float(i);
55 y_offset = 0.0;
56 }
57
58 x_offset = x_offset / width;
59 y_offset = y_offset / height;
60
61 float weight = gaussian(float(i), blur_width) / sum;
62 cur_pix_coords = vec2(x_offset, y_offset) + tex_coord;
63 cur_pix_tex = glup_texture(source_tex, cur_pix_coords);
64 final_pix_tex += cur_pix_tex * weight;
65 }
66 glup_FragColor.rgb = final_pix_tex.rgb;
67 }
68
69 void main() {
70 compute_blur();
71 }
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