Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
StaticSwitchWithConditionalReturn.sksl
blob: 77c1d078364d64bcaeef5eb51b13fd2ac52779a6 [
file
] [
log
] [
blame
]
uniform half4 testInputs
;
void
test_return
()
{
@switch
(
1
)
{
case
1
:
if
(
testInputs
.
x
>
1
)
return
;
}
}