From 593415108dbec3a8906225938df885a17f3845db Mon Sep 17 00:00:00 2001 From: Gottfried Leibniz <37632412+gottfriedleibniz@users.noreply.github.com> Date: Wed, 23 Sep 2020 22:56:48 -0300 Subject: [PATCH] fix: scalebias template glm::qualifier 'Q' cannot be inferred; compiler will ignore it. --- glm/gtx/transform2.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/transform2.inl b/glm/gtx/transform2.inl index 2b53198b..0118ab09 100644 --- a/glm/gtx/transform2.inl +++ b/glm/gtx/transform2.inl @@ -119,7 +119,7 @@ namespace glm template GLM_FUNC_QUALIFIER mat<4, 4, T, Q> scaleBias(mat<4, 4, T, Q> const& m, T scale, T bias) { - return m * scaleBias(scale, bias); + return m * scaleBias(scale, bias); } }//namespace glm