13 lines
172 B
Plaintext
13 lines
172 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct S {
|
||
|
/* 0x0000 */ int arr[1];
|
||
|
};
|
||
|
|
||
|
kernel void tint_symbol(device S& s [[buffer(0)]]) {
|
||
|
(void) s.arr;
|
||
|
return;
|
||
|
}
|
||
|
|