blob: 8f6fcf1e7c3f1d8eaaf1f028bcb69d51c3014ece [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
uint2 textureDimensions_c44fc1(texture2d_array<int, access::write> tint_symbol) {
uint2 res = uint2(tint_symbol.get_width(), tint_symbol.get_height());
return res;
}
fragment void fragment_main(device uint2* tint_symbol_1 [[buffer(0)]], texture2d_array<int, access::write> tint_symbol_2 [[texture(0)]]) {
*(tint_symbol_1) = textureDimensions_c44fc1(tint_symbol_2);
return;
}
kernel void compute_main(device uint2* tint_symbol_3 [[buffer(0)]], texture2d_array<int, access::write> tint_symbol_4 [[texture(0)]]) {
*(tint_symbol_3) = textureDimensions_c44fc1(tint_symbol_4);
return;
}