* @brief Factory that returns a vector loaded from unaligned memory. */
| 271 | * @brief Factory that returns a vector loaded from unaligned memory. |
| 272 | */ |
| 273 | static ASTCENC_SIMD_INLINE vint4 load(const uint8_t* p) |
| 274 | { |
| 275 | vint4 data; |
| 276 | std::memcpy(&data.m, p, 4 * sizeof(int)); |
| 277 | return data; |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * @brief Factory that returns a vector loaded from 16B aligned memory. |
nothing calls this directly
no outgoing calls
no test coverage detected