2021-07-23 16:44:52 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct UBO {
|
|
|
|
/* 0x0000 */ int dynamic_idx;
|
|
|
|
};
|
2022-02-09 23:55:51 +00:00
|
|
|
|
2021-07-23 16:44:52 +00:00
|
|
|
struct tint_array_wrapper {
|
|
|
|
int arr[64];
|
|
|
|
};
|
2022-02-09 23:55:51 +00:00
|
|
|
|
2021-07-23 16:44:52 +00:00
|
|
|
struct S {
|
|
|
|
tint_array_wrapper data;
|
|
|
|
};
|
2022-02-09 23:55:51 +00:00
|
|
|
|
2021-07-23 16:44:52 +00:00
|
|
|
struct Result {
|
|
|
|
/* 0x0000 */ int out;
|
|
|
|
};
|
|
|
|
|
2021-10-28 15:00:39 +00:00
|
|
|
kernel void f(const constant UBO* tint_symbol_1 [[buffer(0)]], device Result* tint_symbol_2 [[buffer(1)]]) {
|
2021-07-23 16:44:52 +00:00
|
|
|
thread S tint_symbol = {};
|
2021-10-28 15:00:39 +00:00
|
|
|
tint_symbol.data.arr[(*(tint_symbol_1)).dynamic_idx] = 1;
|
|
|
|
(*(tint_symbol_2)).out = tint_symbol.data.arr[3];
|
2021-07-23 16:44:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|