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

8 lines
206 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 = (bool3(true, true, false) & bool3(true, false, true));
return;
}