2021-05-26 15:41:02 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
2021-06-18 22:44:31 +00:00
|
|
|
kernel void tint_symbol(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup int tint_symbol_2;
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
2021-06-18 22:44:31 +00:00
|
|
|
tint_symbol_2 = int();
|
|
|
|
}
|
2021-06-28 15:30:57 +00:00
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-06-18 22:44:31 +00:00
|
|
|
tint_symbol_2 = 123;
|
2021-07-30 18:59:06 +00:00
|
|
|
int const use = as_type<int>((as_type<uint>(tint_symbol_2) + as_type<uint>(1)));
|
2021-05-26 15:41:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|