8 lines
160 B
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;
|
||
|
}
|