7 lines
89 B
Plaintext
7 lines
89 B
Plaintext
|
void main() {
|
||
|
half2 x = half2(1);
|
||
|
x = +x;
|
||
|
x = -x;
|
||
|
sk_FragColor.rg = x;
|
||
|
}
|