* @brief Return a float value for an integer vector. */
| 888 | * @brief Return a float value for an integer vector. |
| 889 | */ |
| 890 | ASTCENC_SIMD_INLINE vfloat4 int_to_float(vint4 a) |
| 891 | { |
| 892 | return vfloat4(vcvtq_f32_s32(a.m)); |
| 893 | } |
| 894 | |
| 895 | /** |
| 896 | * @brief Return a float16 value for a float vector, using round-to-nearest. |