7 lines
92 B
GLSL
7 lines
92 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
void main() {
|
|
float x = -42.0;
|
|
sk_FragColor.x = fract(x);
|
|
}
|