|
|
|
@ -62,11 +62,28 @@ namespace detail |
|
|
|
|
}; |
|
|
|
|
# endif//GLM_HAS_BITSCAN_WINDOWS |
|
|
|
|
}//namespace detail |
|
|
|
|
template <typename genType> |
|
|
|
|
GLM_FUNC_QUALIFIER int iround(genType x) |
|
|
|
|
{ |
|
|
|
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'iround' only accept floating-point inputs"); |
|
|
|
|
assert(static_cast<genType>(0.0) <= x); |
|
|
|
|
|
|
|
|
|
return static_cast<int>(x + static_cast<genType>(0.5)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template <typename T, precision P, template <typename, precision> class vecType> |
|
|
|
|
GLM_FUNC_QUALIFIER vecType<int, P> iround(vecType<T, P> const& x) |
|
|
|
|
{ |
|
|
|
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'iround' only accept floating-point inputs"); |
|
|
|
|
assert(all(lessThanEqual(vecType<T, P>(0), x))); |
|
|
|
|
|
|
|
|
|
return vecType<int, P>(x + static_cast<T>(0.5)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template <typename genType> |
|
|
|
|
GLM_FUNC_QUALIFIER uint uround(genType x) |
|
|
|
|
{ |
|
|
|
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'round' only accept floating-point inputs"); |
|
|
|
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'uround' only accept floating-point inputs"); |
|
|
|
|
assert(static_cast<genType>(0.0) <= x); |
|
|
|
|
|
|
|
|
|
return static_cast<uint>(x + static_cast<genType>(0.5)); |
|
|
|
|