Update qualifier.hpp

Fix incorrect type for storage<3, unsigned int, true> in SSE2 
Previously defined as glm_i32vec4, now correctly set to glm_u32vec4.
This commit is contained in:
Ayush Sharma 2025-03-26 19:00:34 +05:30 committed by GitHub
parent 2d4c4b4dd3
commit 7bf2719ee0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,7 +141,7 @@ namespace detail
template<>
struct storage<3, unsigned int, true>
{
typedef glm_i32vec4 type;
typedef glm_u32vec4 type;
};
template<>