dawn-cmake/test/expressions/splat/immediate/bool.wgsl.expected.hlsl

11 lines
172 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void f() {
bool2 v2 = bool2((true).xx);
bool3 v3 = bool3((true).xxx);
bool4 v4 = bool4((true).xxxx);
}