xref: /aosp_15_r20/external/skia/resources/sksl/wgsl/GlobalUniforms.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
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