Sign in
skia
/
skia
/
7d19065eefe4597b26752f5c462731239f7fa54f
/
.
/
tests
/
sksl
/
shared
/
ConstArray.glsl
blob: 8455e108bdee58433c31a4932d863ae58b3cccee [
file
] [
log
] [
blame
]
out
vec4 sk_FragColor
;
const
float
test
[
4
]
=
float
[
4
](
0.0
,
1.0
,
0.0
,
1.0
);
vec4 main
()
{
return
vec4
(
test
[
0
],
test
[
1
],
test
[
2
],
test
[
3
]);
}