Sign in
chromium
/
external
/
github.com
/
google
/
glslang
/
58d6905ea01f7c44652eb082d26b662ca811df25
/
.
/
Test
/
hlsl.whileLoop.frag
blob: e4084ae7eb361010cb526233daeda7b1b4f75ed5 [
file
]
float4
PixelShaderFunction
(
float4 input
)
:
COLOR0
{
while
(
any
(
input
!=
input
))
{
return
input
;
}
while
(
false
)
;
[
unroll
]
while
(
false
)
{
}
while
((
false
))
{
}
}