* @brief Factory that returns a unit length 3 component vfloat4. */
| 293 | * @brief Factory that returns a unit length 3 component vfloat4. |
| 294 | */ |
| 295 | static ASTCENC_SIMD_INLINE vfloat4 unit3() |
| 296 | { |
| 297 | float val = 0.577350258827209473f; |
| 298 | return vfloat4(val, val, val, 0.0f); |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * @brief Factory that returns a unit length 2 component vfloat4. |
no test coverage detected