From e65fc3148152b0d867e52713d0fb4b5d517bc44a Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 25 Aug 2010 23:36:13 +0100 Subject: [PATCH 1/2] Updated version --- glm/setup.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/setup.hpp b/glm/setup.hpp index 9ce1b6fc..85b2a512 100644 --- a/glm/setup.hpp +++ b/glm/setup.hpp @@ -17,7 +17,7 @@ #define GLM_VERSION_MAJOR 0 #define GLM_VERSION_MINOR 9 #define GLM_VERSION_PATCH 0 -#define GLM_VERSION_REVISION 2 +#define GLM_VERSION_REVISION 3 /////////////////////////////////////////////////////////////////////////////////////////////////// // Common values From 85bce33797101fd69994ce00d82b7aa109cbfe58 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 25 Aug 2010 23:37:02 +0100 Subject: [PATCH 2/2] Fixed operator / --- glm/core/type_mat3x4.inl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/glm/core/type_mat3x4.inl b/glm/core/type_mat3x4.inl index 5bb9158f..ea23a677 100644 --- a/glm/core/type_mat3x4.inl +++ b/glm/core/type_mat3x4.inl @@ -522,8 +522,7 @@ namespace detail return tmat3x4( m[0] / s, m[1] / s, - m[2] / s, - m[3] / s); + m[2] / s); } template @@ -536,8 +535,7 @@ namespace detail return tmat3x4( s / m[0], s / m[1], - s / m[2], - s / m[3]); + s / m[2]); } // Unary constant operators