]> git.sesse.net Git - nageru/blob - futatabi/chroma_subsample.vert
Log a warning when we kill a client that is not keeping up.
[nageru] / futatabi / chroma_subsample.vert
1 #version 450 core
2
3 layout(location=0) in vec2 position;
4 out vec2 tc0, tc1;
5 uniform vec2 chroma_offset_0;
6 uniform vec2 chroma_offset_1;
7
8 void main()
9 {
10         // The result of glOrtho(0.0, 1.0, 0.0, 1.0, 0.0, 1.0) is:
11         //
12         //   2.000  0.000  0.000 -1.000
13         //   0.000  2.000  0.000 -1.000
14         //   0.000  0.000 -2.000 -1.000
15         //   0.000  0.000  0.000  1.000
16         gl_Position = vec4(2.0 * position.x - 1.0, 2.0 * position.y - 1.0, -1.0, 1.0);
17         vec2 flipped_tc = position;
18         tc0 = flipped_tc + chroma_offset_0;
19         tc1 = flipped_tc + chroma_offset_1;
20 }
21