14 lines
136 B
Plaintext
14 lines
136 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct S {
|
||
|
int i;
|
||
|
};
|
||
|
|
||
|
kernel void tint_symbol() {
|
||
|
S V = {};
|
||
|
V.i = 5;
|
||
|
return;
|
||
|
}
|
||
|
|