11 lines
194 B
Plaintext
11 lines
194 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 = (a & b);
|
||
|
return;
|
||
|
}
|
||
|
|