* @brief Return a float rounded to the nearest integer value. */
| 764 | * @brief Return a float rounded to the nearest integer value. |
| 765 | */ |
| 766 | ASTCENC_SIMD_INLINE vfloat4 round(vfloat4 a) |
| 767 | { |
| 768 | return vfloat4(vrndnq_f32(a.m)); |
| 769 | } |
| 770 | |
| 771 | /** |
| 772 | * @brief Return the horizontal minimum of a vector. |