* @brief Return the min vector of two vectors. */
| 558 | * @brief Return the min vector of two vectors. |
| 559 | */ |
| 560 | ASTCENC_SIMD_INLINE vint4 min(vint4 a, vint4 b) |
| 561 | { |
| 562 | return vint4(vminq_s32(a.m, b.m)); |
| 563 | } |
| 564 | |
| 565 | /** |
| 566 | * @brief Return the max vector of two vectors. |