14 lines
179 B
Plaintext
14 lines
179 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct S {
|
||
|
/* 0x0000 */ int i;
|
||
|
};
|
||
|
|
||
|
kernel void tint_symbol(constant S& u [[buffer(0)]]) {
|
||
|
(void) u;
|
||
|
(void) u.i;
|
||
|
return;
|
||
|
}
|
||
|
|