Merge pull request #1312 from qbojj/patch-1

fix levels() calculation for scalars #1312
This commit is contained in:
Christophe 2025-01-04 09:37:56 +01:00 committed by GitHub
commit 5b295d8a45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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