Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
e1f72f939232ea43324c901b39da80d9274bf969
/
.
/
resources
/
sksl
/
errors
/
StaticSwitchTest.sksl
blob: 338f20c5c9d6341c4d9f042eaea7363173a899eb [
file
] [
log
] [
blame
]
John Stiles
6798e5d
2020-09-17 18:20:26 -0400
[
diff
] [
blame
]
1
void
non_constant_test_in_static_switch
()
{
2
int
x
=
int
(
sqrt
(
1
));
3
@switch
(
x
)
{
4
case
1
:
5
sk_FragColor
=
half4
(
1
);
6
break
;
7
default
:
8
sk_FragColor
=
half4
(
0
);
9
}
10
}