Sign in
skia
/
skia
/
eb8a53033e88618cd56bfa3ed1c5a381180d5296
/
.
/
resources
/
sksl
/
wgsl
/
GlobalUniforms.sksl
blob: 7898e228fab870e86c4806c0b5e46aef62fc37a3 [
file
] [
log
] [
blame
]
uniform half4 colorGreen
,
colorRed
;
uniform float4 array
[
5
];
// TODO(skia:13902): Test smaller array stride when uniform array layout
// is supported
half4 main
()
{
return
half4
(
colorGreen
.
x
,
colorRed
.
x
,
0
,
1
);
}