From db09ecfc4185eaf2f771b70e0d3c3a21939ba02f Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 15 Mar 2014 22:24:43 +0100 Subject: [PATCH] Fixed bitfieldInterleave for 4 components #175 --- glm/gtx/bit.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/bit.inl b/glm/gtx/bit.inl index d158544a..d34d068f 100644 --- a/glm/gtx/bit.inl +++ b/glm/gtx/bit.inl @@ -666,7 +666,7 @@ namespace glm inline uint32 bitfieldInterleave(uint8 x, uint8 y, uint8 z, uint8 w) { - return detail::bitfieldInterleave(x, y, z); + return detail::bitfieldInterleave(x, y, z, w); } inline int64 bitfieldInterleave(int16 x, int16 y, int16 z, int16 w)