Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
resources
/
sksl
/
errors
/
StaticSwitchWithConditionalBreak.sksl
blob: b1acceb285c1be6e519b0fb0cb24ac6cf49b05ef [
file
] [
log
] [
blame
]
uniform half4 testInputs
;
void
test_break
()
{
@switch
(
1
)
{
case
1
:
if
(
testInputs
.
x
>
2
)
break
;
}
}
/*%%*
static switch contains non-static conditional exit
*%%*/