* @brief Return lanes from @c b if @c cond is set, else @c a. */
| 532 | * @brief Return lanes from @c b if @c cond is set, else @c a. |
| 533 | */ |
| 534 | ASTCENC_SIMD_INLINE vint8 select(vint8 a, vint8 b, vmask8 cond) |
| 535 | { |
| 536 | return vint8(svsel_s32(cond.m, b.m, a.m)); |
| 537 | } |
| 538 | |
| 539 | // ============================================================================ |
| 540 | // vfloat8 operators and functions |