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