* @brief Return lanes from @c b if @c cond is set, else @c a. */
| 636 | * @brief Return lanes from @c b if @c cond is set, else @c a. |
| 637 | */ |
| 638 | ASTCENC_SIMD_INLINE vint4 select(vint4 a, vint4 b, vmask4 cond) |
| 639 | { |
| 640 | return vint4(vbslq_s32(cond.m, b.m, a.m)); |
| 641 | } |
| 642 | |
| 643 | // ============================================================================ |
| 644 | // vfloat4 operators and functions |