dawn-cmake/test/tint/shadowing/short_names/const.wgsl

11 lines
116 B
WebGPU Shading Language

type a = vec3f;
fn f() {
{
const vec3f = 1;
const b = vec3f;
}
const c = a();
const d = vec3f();
}