mirror of
https://github.com/icaven/glm.git
synced 2025-12-06 16:56:56 +08:00
Fixed build
This commit is contained in:
parent
a772bb3fd1
commit
2a332ac098
@ -587,9 +587,9 @@ namespace detail
|
|||||||
return detail::bitfieldInterleave<uint8, uint32>(x, y, z, w);
|
return detail::bitfieldInterleave<uint8, uint32>(x, y, z, w);
|
||||||
}
|
}
|
||||||
|
|
||||||
GLM_FUNC_QUALIFIER uint64 bitfieldInterleave(u8vec4 const& v)
|
GLM_FUNC_QUALIFIER uint32 bitfieldInterleave(u8vec4 const& v)
|
||||||
{
|
{
|
||||||
return detail::bitfieldInterleave<uint32, uint64>(v.x, v.y, v.z, v.w);
|
return detail::bitfieldInterleave<uint8, uint32>(v.x, v.y, v.z, v.w);
|
||||||
}
|
}
|
||||||
|
|
||||||
GLM_FUNC_QUALIFIER int64 bitfieldInterleave(int16 x, int16 y, int16 z, int16 w)
|
GLM_FUNC_QUALIFIER int64 bitfieldInterleave(int16 x, int16 y, int16 z, int16 w)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user