2021-06-30 15:59:40 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct S {
|
|
|
|
int a;
|
|
|
|
float b;
|
|
|
|
};
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void tint_symbol_inner(uint local_invocation_index, threadgroup S* const tint_symbol_2) {
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
2022-08-11 02:28:01 +00:00
|
|
|
S const tint_symbol_1 = S{};
|
2021-08-04 22:15:28 +00:00
|
|
|
*(tint_symbol_2) = tint_symbol_1;
|
2021-06-30 15:59:40 +00:00
|
|
|
}
|
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-08-04 22:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kernel void tint_symbol(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup S tint_symbol_3;
|
|
|
|
tint_symbol_inner(local_invocation_index, &(tint_symbol_3));
|
2021-06-30 15:59:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|