#pragma clang diagnostic ignored "-Wmissing-prototypes" #include #include using namespace metal; struct SSBO1 { uint values1[1]; }; struct SSBO0 { uint values0[1]; }; static inline __attribute__((always_inline)) void callee2(thread float4& gl_FragCoord, device SSBO1& _11) { int _25 = int(gl_FragCoord.x); _11.values1[_25]++; } static inline __attribute__((always_inline)) void callee(thread float4& gl_FragCoord, device SSBO1& _11, device SSBO0& _13) { int _38 = int(gl_FragCoord.x); _13.values0[_38]++; callee2(gl_FragCoord, _11); } static inline __attribute__((always_inline)) void _46() { } static inline __attribute__((always_inline)) void _48() { } fragment void main0(device SSBO1& _11 [[buffer(0), raster_order_group(0)]], device SSBO0& _13 [[buffer(1), raster_order_group(0)]], float4 gl_FragCoord [[position]]) { callee(gl_FragCoord, _11, _13); _46(); _48(); }