ci: Remove gcc from macos matrix
[glslang.git] / Test / coord_conventions.frag
blob4ae6060e8eac2121e6381eefbf05b72495501c08
1 #version 140
3 #extension GL_ARB_fragment_coord_conventions: require
4 #extension GL_ARB_explicit_attrib_location : enable
6 #ifdef GL_ES
7 precision mediump float;
8 #endif
10 in vec4 i;
12 layout (origin_upper_left,pixel_center_integer) in vec4 gl_FragCoord;
13 layout (location = 0) out vec4 myColor;
15 const float eps=0.001;
17 void main() 
19     myColor = vec4(0.2);
20     if (gl_FragCoord.y >= 10) {
21         myColor.b = 0.8;
22     }
23     if (gl_FragCoord.y == trunc(gl_FragCoord.y)) {
24         myColor.g = 0.8;
25     }
26     if (gl_FragCoord.x == trunc(gl_FragCoord.x)) {
27         myColor.r = 0.8;
28     }
30     vec4 diff = gl_FragCoord - i;
31     if (abs(diff.z)>eps) 
32         myColor.b = 0.5;
33     if (abs(diff.w)>eps) 
34         myColor.a = 0.5;