mirror of
https://github.com/g-truc/glm.git
synced 2025-04-04 13:05:00 +00:00
Merge pull request #1312 from qbojj/patch-1
fix levels() calculation for scalars #1312
This commit is contained in:
commit
5b295d8a45
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ namespace glm
|
|||
template <typename T>
|
||||
inline T levels(T Extent)
|
||||
{
|
||||
return vec<1, T, defaultp>(Extent).x;
|
||||
return levels(vec<1, T, defaultp>(Extent));
|
||||
}
|
||||
}//namespace glm
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue