* @brief Return the dot product for the bottom 3 lanes, returning vector. */
| 322 | * @brief Return the dot product for the bottom 3 lanes, returning vector. |
| 323 | */ |
| 324 | ASTCENC_SIMD_INLINE vfloat4 dot3(vfloat4 a, vfloat4 b) |
| 325 | { |
| 326 | vfloat4 m = a * b; |
| 327 | float d3 = hadd_rgb_s(m); |
| 328 | return vfloat4(d3, d3, d3, 0.0f); |
| 329 | } |
| 330 | |
| 331 | #endif |
| 332 |
nothing calls this directly
no test coverage detected