From 9f0958e40d6eb7325da7a099ef53c1e9c58cb148 Mon Sep 17 00:00:00 2001 From: "Jason P. Barmparesos" Date: Mon, 12 Sep 2016 16:40:37 +0300 Subject: [PATCH] Fixed bug on the faceforward function. --- glm/detail/func_geometric_simd.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/func_geometric_simd.inl b/glm/detail/func_geometric_simd.inl index 22548728..f0d14a26 100644 --- a/glm/detail/func_geometric_simd.inl +++ b/glm/detail/func_geometric_simd.inl @@ -67,7 +67,7 @@ namespace detail GLM_FUNC_QUALIFIER static tvec4 call(tvec4 const& N, tvec4 const& I, tvec4 const& Nref) { tvec4 result(uninitialize); - result.data = glm_vec4_faceforward(N.data. I.data, Nref.data); + result.data = glm_vec4_faceforward(N.data, I.data, Nref.data); return result; } };