From f3044dde88668f4d89bcfec1723181c22e903b69 Mon Sep 17 00:00:00 2001 From: "Jason P. Barmparesos" Date: Mon, 12 Sep 2016 16:40:37 +0300 Subject: [PATCH 1/3] 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; } }; From 5fb5e0e3211674d0b70680343fd5bfe898c6a8cc Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Tue, 13 Sep 2016 00:01:54 +0200 Subject: [PATCH 2/3] Fixed bug on the faceforward function. #549 --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 09f1d0c5..14ab3ff4 100644 --- a/readme.md +++ b/readme.md @@ -54,6 +54,7 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate) #### [GLM 0.9.8.1](https://github.com/g-truc/glm/tree/0.9.8) - 2016-XX-XX ##### Fixes: - Fixed GCC warning filtering, replaced -pedantic by -Wpedantic +- Fixed bug on the faceforward function. #549 #### [GLM 0.9.8.0](https://github.com/g-truc/glm/releases/tag/0.9.8.0) - 2016-09-11 ##### Features: From 8ac281e8415b8c47269a8d68235274092e920f0c Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Tue, 13 Sep 2016 00:02:59 +0200 Subject: [PATCH 3/3] Fixed bug on the faceforward function. #549 --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 14ab3ff4..f65abd8c 100644 --- a/readme.md +++ b/readme.md @@ -54,7 +54,7 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate) #### [GLM 0.9.8.1](https://github.com/g-truc/glm/tree/0.9.8) - 2016-XX-XX ##### Fixes: - Fixed GCC warning filtering, replaced -pedantic by -Wpedantic -- Fixed bug on the faceforward function. #549 +- Fixed SIMD faceforward bug. #549 #### [GLM 0.9.8.0](https://github.com/g-truc/glm/releases/tag/0.9.8.0) - 2016-09-11 ##### Features: