Browse Source

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.
Ayush Sharma 8 months ago
parent
commit
e771488592
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/qualifier.hpp

+ 1 - 1
glm/detail/qualifier.hpp

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