* @brief Overload: vector by vector division. */
| 672 | * @brief Overload: vector by vector division. |
| 673 | */ |
| 674 | ASTCENC_SIMD_INLINE vfloat4 operator/(vfloat4 a, vfloat4 b) |
| 675 | { |
| 676 | return vfloat4(vdivq_f32(a.m, b.m)); |
| 677 | } |
| 678 | |
| 679 | /** |
| 680 | * @brief Overload: vector by vector equality. |