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

11 lines
194 B
Plaintext
Raw Normal View History

#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 = (a & b);
return;
}