Skip to content

Commit e771488

Browse files
ayush-sharma06christophe-lunarg
authored andcommitted
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.
1 parent 2d4c4b4 commit e771488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glm/detail/qualifier.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ namespace detail
141141
template<>
142142
struct storage<3, unsigned int, true>
143143
{
144-
typedef glm_i32vec4 type;
144+
typedef glm_u32vec4 type;
145145
};
146146

147147
template<>

0 commit comments

Comments
 (0)