mirror of
https://github.com/g-truc/glm.git
synced 2025-04-10 15:23:53 +00:00
Fixed build errors
This commit is contained in:
parent
72c3b98e5b
commit
6c436efacd
1 changed files with 6 additions and 6 deletions
|
@ -115,13 +115,13 @@ namespace detail
|
|||
};
|
||||
|
||||
template<>
|
||||
struct storage<4, int32, true>
|
||||
struct storage<4, int, true>
|
||||
{
|
||||
typedef glm_i32vec4 type;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct storage<4, uint32, true>
|
||||
struct storage<4, unsigned int, true>
|
||||
{
|
||||
typedef glm_u32vec4 type;
|
||||
};
|
||||
|
@ -133,13 +133,13 @@ namespace detail
|
|||
};
|
||||
|
||||
template<>
|
||||
struct storage<2, int64, true>
|
||||
struct storage<2, detail::int64, true>
|
||||
{
|
||||
typedef glm_i64vec2 type;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct storage<2, uint64, true>
|
||||
struct storage<2, detail::uint64, true>
|
||||
{
|
||||
typedef glm_u64vec2 type;
|
||||
};
|
||||
|
@ -155,13 +155,13 @@ namespace detail
|
|||
|
||||
# if (GLM_ARCH & GLM_ARCH_AVX2_BIT)
|
||||
template<>
|
||||
struct storage<4, int64, true>
|
||||
struct storage<4, detail::int64, true>
|
||||
{
|
||||
typedef glm_i64vec4 type;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct storage<4, uint64, true>
|
||||
struct storage<4, detail::uint64, true>
|
||||
{
|
||||
typedef glm_u64vec4 type;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue