mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Merge pull request #1032 from gottfriedleibniz/patch-scalebias
fix: scalebias #1032
This commit is contained in:
commit
cc34bc7d49
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue