2021-06-30 15:59:40 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct tint_array_wrapper {
|
|
|
|
int arr[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
kernel void tint_symbol(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
2021-07-30 14:08:06 +00:00
|
|
|
threadgroup tint_array_wrapper tint_symbol_2;
|
|
|
|
for(uint idx = local_invocation_index; (idx < 3u); idx = (idx + 1u)) {
|
|
|
|
uint const i = idx;
|
|
|
|
tint_symbol_2.arr[i] = int();
|
2021-06-30 15:59:40 +00:00
|
|
|
}
|
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-07-30 14:08:06 +00:00
|
|
|
(void) tint_symbol_2;
|
2021-06-30 15:59:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|