6 lines
103 B
Plaintext
6 lines
103 B
Plaintext
|
void main() {
|
||
|
const float4 a = float4(0);
|
||
|
const float4 b = float4(1);
|
||
|
if (a == b) { discard; }
|
||
|
}
|