dawn-cmake/test/statements/for/initializer/array_ctor.wgsl.expected.hlsl

13 lines
169 B
HLSL
Raw Normal View History

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void f() {
const int tint_symbol[1] = {1};
{
[loop] for(int i = tint_symbol[0]; ; ) {
}
}
}