2021-07-23 16:44:52 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct UBO {
|
|
|
|
/* 0x0000 */ int dynamic_idx;
|
|
|
|
};
|
|
|
|
struct Result {
|
|
|
|
/* 0x0000 */ int out;
|
|
|
|
};
|
|
|
|
struct tint_array_wrapper {
|
|
|
|
/* 0x0000 */ int arr[4];
|
|
|
|
};
|
|
|
|
struct SSBO {
|
|
|
|
/* 0x0000 */ tint_array_wrapper data;
|
|
|
|
};
|
|
|
|
|
2021-08-12 19:47:20 +00:00
|
|
|
kernel void f(constant UBO& ubo [[buffer(0)]], device Result& result [[buffer(1)]], device SSBO& ssbo [[buffer(2)]]) {
|
2021-07-23 16:44:52 +00:00
|
|
|
result.out = ssbo.data.arr[ubo.dynamic_idx];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|