2021-06-21 08:49:27 +00:00
|
|
|
#include <metal_stdlib>
|
2021-06-18 18:56:13 +00:00
|
|
|
|
2021-06-21 08:49:27 +00:00
|
|
|
using namespace metal;
|
2021-08-04 22:15:28 +00:00
|
|
|
struct tint_symbol_1 {
|
2021-07-14 17:28:01 +00:00
|
|
|
/* 0x0000 */ uint4 buffer_size[1];
|
2021-06-21 08:49:27 +00:00
|
|
|
};
|
2021-06-18 18:56:13 +00:00
|
|
|
struct SB_RW {
|
2021-06-21 08:49:27 +00:00
|
|
|
/* 0x0000 */ uint arg_0[1];
|
2021-06-18 18:56:13 +00:00
|
|
|
};
|
|
|
|
struct tint_symbol {
|
2021-06-21 08:49:27 +00:00
|
|
|
float4 value [[position]];
|
2021-06-18 18:56:13 +00:00
|
|
|
};
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void arrayLength_eb510f(constant tint_symbol_1& tint_symbol_2) {
|
|
|
|
uint res = ((tint_symbol_2.buffer_size[0u][0u] - 0u) / 4u);
|
2021-06-21 08:49:27 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
float4 vertex_main_inner(constant tint_symbol_1& tint_symbol_2) {
|
|
|
|
arrayLength_eb510f(tint_symbol_2);
|
|
|
|
return float4();
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
vertex tint_symbol vertex_main(constant tint_symbol_1& tint_symbol_2 [[buffer(30)]]) {
|
|
|
|
float4 const inner_result = vertex_main_inner(tint_symbol_2);
|
|
|
|
tint_symbol wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment void fragment_main(constant tint_symbol_1& tint_symbol_2 [[buffer(30)]]) {
|
|
|
|
arrayLength_eb510f(tint_symbol_2);
|
2021-06-21 08:49:27 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
kernel void compute_main(constant tint_symbol_1& tint_symbol_2 [[buffer(30)]]) {
|
|
|
|
arrayLength_eb510f(tint_symbol_2);
|
2021-06-21 08:49:27 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|