Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
tests
/
sksl
/
shared
/
StaticSwitchWithStaticConditionalBreakInsideBlock.glsl
blob: 25a8636706776dbaf00fa0fb06e9230e841fc527 [
file
] [
log
] [
blame
]
out
vec4 sk_FragColor
;
void
main
()
{
float
x
=
0.0
;
switch
(
0
)
{
case
0
:
x
=
0.0
;
if
(
x
<
1.0
)
{
sk_FragColor
=
vec4
(
x
);
break
;
}
case
1
:
x
=
1.0
;
}
}