• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#include <metal_stdlib>
2#include <simd/simd.h>
3using namespace metal;
4struct Inputs {
5};
6struct Outputs {
7    half4 sk_FragColor [[color(0)]];
8};
9fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
10    Outputs _out;
11    (void)_out;
12    array<float, 2> y;
13    array<float, 2> _0_v = y;
14    _0_v[0] = _0_v[1];
15    return _out;
16}
17