Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
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
]);
}