2021-05-19 10:38:18 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct S {
|
|
|
|
/* 0x0000 */ int a;
|
|
|
|
};
|
|
|
|
|
2021-10-28 15:00:39 +00:00
|
|
|
kernel void tint_symbol(const constant S* tint_symbol_1 [[buffer(0)]]) {
|
2022-08-03 02:49:28 +00:00
|
|
|
int const u = as_type<int>((as_type<uint>((*(tint_symbol_1)).a) + as_type<uint>(1)));
|
2021-05-19 10:38:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|