]> git.sesse.net Git - movit/blob - footer.comp
Fix some small whitespace errors in SingleResamplePassEffect.
[movit] / footer.comp
1 // GLSL is pickier than the C++ preprocessor in if-testing for undefined
2 // tokens; do some fixups here to keep it happy.
3
4 #ifndef SQUARE_ROOT_TRANSFORMATION
5 #define SQUARE_ROOT_TRANSFORMATION 0
6 #endif
7
8 #ifndef FLIP_ORIGIN
9 #define FLIP_ORIGIN 0
10 #endif
11
12 void main()
13 {
14         INPUT();
15 }
16
17 vec4 tex2D(sampler2D s, vec2 coord)
18 {
19         return texture(s, coord);
20 }
21
22 void cs_output(uvec2 coord, vec4 val)
23 {
24         cs_output(ivec2(coord), val);
25 }
26
27 void cs_output(ivec2 coord, vec4 val)
28 {
29         // Run the value through any preprocessing steps we might have.
30         CS_OUTPUT_VAL = val;
31         val = CS_POSTPROC(vec2(0.0, 0.0));
32
33 #if SQUARE_ROOT_TRANSFORMATION
34         // Make sure we don't give negative values to sqrt.
35         val.rgb = sqrt(max(val.rgb, 0.0));
36 #endif
37
38 #if FLIP_ORIGIN
39         coord.y = imageSize(tex_outbuf).y - coord.y - 1;
40 #endif
41
42         imageStore(tex_outbuf, coord, val);
43 }