From 504ad9c8fa6c28590136041e0b9708cfa924eac8 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 21 Apr 2011 11:09:01 +0100 Subject: [PATCH] Fixed build --- glm/gtc/type_ptr.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glm/gtc/type_ptr.hpp b/glm/gtc/type_ptr.hpp index b651b574..79e2a840 100644 --- a/glm/gtc/type_ptr.hpp +++ b/glm/gtc/type_ptr.hpp @@ -426,7 +426,7 @@ namespace glm //! Build a matrix from a pointer. //! From GLM_GTC_type_ptr extension. template - inline detail::tmat3 make_mat3(T const * const ptr) + inline detail::tmat3x3 make_mat3(T const * const ptr) { return make_mat3x3(Result); } @@ -434,7 +434,7 @@ namespace glm //! Build a matrix from a pointer. //! From GLM_GTC_type_ptr extension. template - inline detail::tmat4 make_mat4(T const * const ptr) + inline detail::tmat4x4 make_mat4(T const * const ptr) { return make_mat4x4(Result); }