1cb93a386Sopenharmony_ci#include <metal_stdlib> 2cb93a386Sopenharmony_ci#include <simd/simd.h> 3cb93a386Sopenharmony_ciusing namespace metal; 4cb93a386Sopenharmony_cistruct Uniforms { 5cb93a386Sopenharmony_ci half unknownInput; 6cb93a386Sopenharmony_ci}; 7cb93a386Sopenharmony_cistruct Inputs { 8cb93a386Sopenharmony_ci}; 9cb93a386Sopenharmony_cistruct Outputs { 10cb93a386Sopenharmony_ci half4 sk_FragColor [[color(0)]]; 11cb93a386Sopenharmony_ci}; 12cb93a386Sopenharmony_cifragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) { 13cb93a386Sopenharmony_ci Outputs _out; 14cb93a386Sopenharmony_ci (void)_out; 15cb93a386Sopenharmony_ci int i = int(_uniforms.unknownInput); 16cb93a386Sopenharmony_ci int4 i4 = int4(i); 17cb93a386Sopenharmony_ci i4 = int4(int2(i), 0, 1); 18cb93a386Sopenharmony_ci i4 = int4(0, i, 1, 0); 19cb93a386Sopenharmony_ci i4 = int4(0, i, 0, i); 20cb93a386Sopenharmony_ci _out.sk_FragColor = half4(i4); 21cb93a386Sopenharmony_ci return _out; 22cb93a386Sopenharmony_ci} 23