Sign in
skia
/
skia
/
437cd4d85737039dd9719667905832982b843574
/
.
/
resources
/
sksl
/
errors
/
StaticSwitchWithConditionalReturn.sksl
blob: 4c44d73672d86ac909d72c4ce3019cbfc77c42f7 [
file
] [
log
] [
blame
]
uniform half4 testInputs
;
void
test_return
()
{
@switch
(
1
)
{
case
1
:
if
(
testInputs
.
x
>
1
)
return
;
}
}
/*%%*
static switch contains non-static conditional exit
*%%*/