9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
void main() {
|
|
half x;
|
|
switch (1) {
|
|
case 0: x = 0; break;
|
|
default: x = 1; discard;
|
|
}
|
|
sk_FragColor = half4(x);
|
|
}
|