blob: 56cae073375147147ff7df0345a27ee42318f36b [file] [log] [blame]
uniform half4 colorGreen, colorRed;
uniform float4 array[5]; // TODO(skbug.com/40044990): Test smaller array stride when uniform array layout
// is supported
half4 main() {
return half4(colorGreen.x, colorRed.x, 0, 1);
}