Sign in
skia
/
skia
/
437cd4d85737039dd9719667905832982b843574
/
.
/
resources
/
sksl
/
shared
/
StaticSwitchWithFallthroughB.sksl
blob: 7302097b6a7f6ecee4d009d97e73d0d64c0a4165 [
file
] [
log
] [
blame
]
void
main
()
{
float
x
=
0.0
;
switch
(
1
)
{
case
0
:
x
=
0.0
;
case
1
:
x
=
1.0
;
}
sk_FragColor
=
half4
(
half
(
x
));
}