* @brief Store a vector to an unaligned memory address. */
| 639 | * @brief Store a vector to an unaligned memory address. |
| 640 | */ |
| 641 | ASTCENC_SIMD_INLINE void store(vint4 a, int* p) |
| 642 | { |
| 643 | // Cast due to missing intrinsics |
| 644 | _mm_storeu_ps(reinterpret_cast<float*>(p), _mm_castsi128_ps(a.m)); |
| 645 | } |
| 646 | |
| 647 | /** |
| 648 | * @brief Store a vector to an unaligned memory address. |
no outgoing calls
no test coverage detected