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 Christophe
parent 2d4c4b4dd3
commit e771488592

View File

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