From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtx/matrix_cross_product.inl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'external/include/glm/gtx/matrix_cross_product.inl') diff --git a/external/include/glm/gtx/matrix_cross_product.inl b/external/include/glm/gtx/matrix_cross_product.inl index 16f07e9..d8ec11f 100644 --- a/external/include/glm/gtx/matrix_cross_product.inl +++ b/external/include/glm/gtx/matrix_cross_product.inl @@ -3,13 +3,13 @@ namespace glm { - template - GLM_FUNC_QUALIFIER tmat3x3 matrixCross3 + template + GLM_FUNC_QUALIFIER mat<3, 3, T, Q> matrixCross3 ( - tvec3 const & x + vec<3, T, Q> const& x ) { - tmat3x3 Result(T(0)); + mat<3, 3, T, Q> Result(T(0)); Result[0][1] = x.z; Result[1][0] = -x.z; Result[0][2] = -x.y; @@ -19,13 +19,13 @@ namespace glm return Result; } - template - GLM_FUNC_QUALIFIER tmat4x4 matrixCross4 + template + GLM_FUNC_QUALIFIER mat<4, 4, T, Q> matrixCross4 ( - tvec3 const & x + vec<3, T, Q> const& x ) { - tmat4x4 Result(T(0)); + mat<4, 4, T, Q> Result(T(0)); Result[0][1] = x.z; Result[1][0] = -x.z; Result[0][2] = -x.y; -- cgit v1.2.3