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

11 lines
240 B
Plaintext

#include <metal_stdlib>
using namespace metal;
kernel void f() {
bool3 const a = bool3(true, true, false);
bool3 const b = bool3(true, false, true);
bool3 const r = (bool3(true, true, false) & bool3(true, false, true));
return;
}