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);
}