This commit is contained in:
Gabriel Almeida 2025-03-24 20:32:18 +00:00 committed by GitHub
commit 4625d593c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ namespace glm
template<typename T>
struct TMin {
T operator()(const T& a, const T& b) { return min(a, b); }
GLM_FUNC_QUALIFIER T operator()(const T& a, const T& b) { return min(a, b); }
};
// max
@ -36,7 +36,7 @@ namespace glm
template<typename T>
struct TMax {
T operator()(const T& a, const T& b) { return max(a, b); }
GLM_FUNC_QUALIFIER T operator()(const T& a, const T& b) { return max(a, b); }
};
// abs