Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
shared
/
UnusedVariables.sksl
blob: 013451149164c423a16484a1dbc618e4196e8c22 [
file
] [
log
] [
blame
]
half4 main
(
float2 coords
)
{
float
a
=
1
,
b
=
2
,
c
=
3
;
float
d
=
c
;
float
e
=
d
;
b
++;
d
++;
return
half4
(
b
==
2
,
b
==
3
,
d
==
5
,
d
==
4
);
}