* @brief Return the horizontal minimum of a single vector. */
| 630 | * @brief Return the horizontal minimum of a single vector. |
| 631 | */ |
| 632 | ASTCENC_SIMD_INLINE vint4 hmin(vint4 a) |
| 633 | { |
| 634 | int b = std::min(a.m[0], a.m[1]); |
| 635 | int c = std::min(a.m[2], a.m[3]); |
| 636 | return vint4(std::min(b, c)); |
| 637 | } |
| 638 | |
| 639 | /** |
| 640 | * @brief Return the horizontal maximum of a single vector. |