15 lines
129 B
Plaintext
15 lines
129 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
struct S {
|
||
|
int i;
|
||
|
uint u;
|
||
|
float f;
|
||
|
bool b;
|
||
|
};
|
||
|
|
||
|
void f() {
|
||
|
S v = {};
|
||
|
}
|
||
|
|