Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
cb15b7cf77a646e15890ac7dd9c91de29f2ed96a
/
.
/
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
;
}
}
}