* @brief Return the dot product for the bottom 3 lanes, returning scalar. */
| 313 | * @brief Return the dot product for the bottom 3 lanes, returning scalar. |
| 314 | */ |
| 315 | ASTCENC_SIMD_INLINE float dot3_s(vfloat4 a, vfloat4 b) |
| 316 | { |
| 317 | vfloat4 m = a * b; |
| 318 | return hadd_rgb_s(m); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * @brief Return the dot product for the bottom 3 lanes, returning vector. |
nothing calls this directly
no test coverage detected