Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
dda1d31623a6df7eb2b4e7c8633bd8675f333353
/
.
/
tests
/
sksl
/
shared
/
StaticSwitchWithStaticConditionalBreak.sksl
blob: f559584a3844bbc3e656635546697eae2d96e9a3 [
file
] [
log
] [
blame
]
John Stiles
b024549
2020-09-14 17:30:13 -0400
[
diff
] [
blame
]
1
void
main
()
{
2
float
x
=
0.0
;
3
switch
(
0
)
{
4
case
0
:
5
x
=
0.0
;
6
if
(
x
<
1
)
break
;
7
case
1
:
8
x
=
1.0
;
9
}
10
sk_FragColor
=
half4
(
half
(
x
));
11
}