dawn-cmake/test/tint/shadowing/struct/param.wgsl.expected.dxc.hlsl

13 lines
124 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
struct a {
int a;
};
void f(a a_1) {
const a b = a_1;
}