dawn-cmake/test/tint/shadowing/function/let.wgsl.expected.hlsl

13 lines
137 B
HLSL

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