dawn-cmake/test/tint/expressions/binary/bit-and/vec3-vec3/bool.wgsl.expected.fxc.hlsl

8 lines
160 B
HLSL

[numthreads(1, 1, 1)]
void f() {
const bool3 a = bool3(true, true, false);
const bool3 b = bool3(true, false, true);
const bool3 r = (a & b);
return;
}