6 lines
97 B
GLSL
6 lines
97 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
void main() {
|
|
sk_FragColor = vec4(float(gl_FrontFacing ? 1 : -1));
|
|
}
|