mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 20:59:04 +00:00
23 lines
402 B
GLSL
23 lines
402 B
GLSL
|
float4 main() : SV_TARGET
|
||
|
{
|
||
|
if (!(0) && (0) || (!1))
|
||
|
return 0.0.xxxx;
|
||
|
if (0)
|
||
|
return 0.0.xxxx;
|
||
|
if (!(bool)0)
|
||
|
return 0.0.xxxx;
|
||
|
if (!0)
|
||
|
return 0.0.xxxx;
|
||
|
if (!(bool)1)
|
||
|
return 0.0.xxxx;
|
||
|
if (!1)
|
||
|
return 0.0.xxxx;
|
||
|
if (0 || 1)
|
||
|
return 0.0.xxxx;
|
||
|
if (1 && 0)
|
||
|
return 0.0.xxxx;
|
||
|
if (1 || false)
|
||
|
return 0.0.xxxx;
|
||
|
if (true && 1)
|
||
|
return 0.0.xxxx;
|
||
|
}
|