xref: /aosp_15_r20/external/skia/tests/sksl/shared/ArrayFollowedByScalar.metal (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1#include <metal_stdlib>
2#include <simd/simd.h>
3#ifdef __clang__
4#pragma clang diagnostic ignored "-Wall"
5#endif
6using namespace metal;
7struct Inputs {
8};
9struct Outputs {
10    half4 sk_FragColor [[color(0)]];
11};
12fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
13    Outputs _out;
14    (void)_out;
15    array<half, 3> rgb;
16    half a;
17    rgb[0] = 0.0h;
18    rgb[1] = 1.0h;
19    rgb[2] = 0.0h;
20    a = 1.0h;
21    _out.sk_FragColor = half4(rgb[0], rgb[1], rgb[2], a);
22    return _out;
23}
24