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 tháng trước cách đây
mục cha
commit
e771488592
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      glm/detail/qualifier.hpp

+ 1 - 1
glm/detail/qualifier.hpp

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