* @brief Return the horizontal maximum of a vector. */
| 131 | * @brief Return the horizontal maximum of a vector. |
| 132 | */ |
| 133 | ASTCENC_SIMD_INLINE int hmax_s(vint4 a) |
| 134 | { |
| 135 | return hmax(a).lane<0>(); |
| 136 | } |
| 137 | |
| 138 | // ============================================================================ |
| 139 | // vfloat4 operators and functions |