* @brief Factory that returns a 3 component vfloat4. */
| 335 | * @brief Factory that returns a 3 component vfloat4. |
| 336 | */ |
| 337 | static ASTCENC_SIMD_INLINE vfloat4 vfloat3(float a, float b, float c) |
| 338 | { |
| 339 | return vfloat4(a, b, c, 0.0f); |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * @brief Factory that returns a 2 component vfloat4. |
no test coverage detected