Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
StaticSwitchWithConditionalContinue.sksl
blob: aabefa2e4009ae6dfb8e36b4a9c461c2f45a3b33 [
file
] [
log
] [
blame
]
uniform half4 testInputs
;
void
test_continue
()
{
for
(;;)
{
@switch
(
1
)
{
case
1
:
if
(
testInputs
.
x
>
3
)
continue
;
}
}
}