From d26c9df71d5a9bb0b91761dbc8e621954a1634f7 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Tue, 22 Nov 2011 16:08:21 +0000 Subject: [PATCH] Fixed outerproduct ticket #150 --- glm/core/func_matrix.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glm/core/func_matrix.inl b/glm/core/func_matrix.inl index 3b6d0418..d7aa7a43 100644 --- a/glm/core/func_matrix.inl +++ b/glm/core/func_matrix.inl @@ -135,8 +135,8 @@ namespace glm template GLM_FUNC_QUALIFIER detail::tmat2x4 outerProduct ( - detail::tvec2 const & c, - detail::tvec4 const & r + detail::tvec4 const & c, + detail::tvec2 const & r ) { GLM_STATIC_ASSERT(detail::type::is_float, "'outerProduct' only accept floating-point inputs"); @@ -156,8 +156,8 @@ namespace glm template GLM_FUNC_QUALIFIER detail::tmat4x2 outerProduct ( - detail::tvec4 const & c, - detail::tvec2 const & r + detail::tvec2 const & c, + detail::tvec4 const & r ) { GLM_STATIC_ASSERT(detail::type::is_float, "'outerProduct' only accept floating-point inputs");