mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
9 lines
325 B
JavaScript
9 lines
325 B
JavaScript
float4 PixelShaderFunction(float input) : COLOR0
|
|
{
|
|
[unroll] do {} while (false);
|
|
[unroll] do {;} while (false);
|
|
do { return (float4)input; } while (input > 2.0);
|
|
do ++input; while (input < 10.0);
|
|
do while (++input < 10.0); while (++input < 10.0); // nest while inside do-while
|
|
return (float4)input;
|
|
}
|