• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1uniform half4 colorGreen, colorRed;
2uniform float4 array[5];  // TODO(skia:13902): Test smaller array stride when uniform array layout
3                          // is supported
4
5half4 main() {
6    return half4(colorGreen.x, colorRed.x, 0, 1);
7}
8