1 2out vec4 sk_FragColor; 3void main() { 4 bool sk_Clockwise = gl_FrontFacing; 5 sk_FragColor = vec4(float(sk_Clockwise ? 1 : -1)); 6} 7