Sign in
skia
/
skia
/
e8ab6e172d07e8d0f04e1fdf17f1202a4547359a
/
.
/
resources
/
sksl
/
shared
/
ConstArray.sksl
blob: ca2322028692c436f9f8d5f3e3e91ee446a590cc [
file
] [
log
] [
blame
]
const
half test
[
4
]
=
half
[
4
](
0
,
1
,
0
,
1
);
half4 main
(
float2 xy
)
{
return
half4
(
test
[
0
],
test
[
1
],
test
[
2
],
test
[
3
]);
}