fix: scalebias

template glm::qualifier 'Q' cannot be inferred; compiler will ignore it.
master
Gottfried Leibniz ago%!(EXTRA string=5 years)
parent b3f8772026
commit 593415108d
  1. 2
      glm/gtx/transform2.inl

@ -119,7 +119,7 @@ namespace glm
template<typename T, qualifier Q>
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<T, Q>(scale, bias);
}
}//namespace glm

Loading…
Cancel
Save