13 lines
186 B
Plaintext
13 lines
186 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void f() {
|
||
|
{
|
||
|
int const vec3f = 1;
|
||
|
int const b = vec3f;
|
||
|
}
|
||
|
float3 const c = float3(0.0f);
|
||
|
float3 const d = float3(0.0f);
|
||
|
}
|
||
|
|