Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.21.0/tests/lit-tests/refBoolArgSelect.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

3 lines
136 B
Plaintext

// RUN: %{ispc} --target=host %s > %t 2>&1
bool test(bool &cond, bool arg1, uniform bool *uniform arg2) { return cond ? arg1 : *arg2; }