dawn-cmake/test/tint/shadowing/short_names/var.wgsl.expected.msl

13 lines
162 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void f() {
{
int vec3f = 1;
int b = vec3f;
}
float3 c = float3(0.0f);
float3 d = float3(0.0f);
}