|
|
@ -284,7 +284,7 @@ namespace glm |
|
|
|
template <typename T, precision P, template <typename, precision> class vecType> |
|
|
|
template <typename T, precision P, template <typename, precision> class vecType> |
|
|
|
GLM_FUNC_QUALIFIER vecType<int, P> findLSB(vecType<T, P> const & x) |
|
|
|
GLM_FUNC_QUALIFIER vecType<int, P> findLSB(vecType<T, P> const & x) |
|
|
|
{ |
|
|
|
{ |
|
|
|
GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'findLSB' only accept integer values"); |
|
|
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'findLSB' only accept integer values"); |
|
|
|
|
|
|
|
|
|
|
|
return detail::functor1<int, T, P, vecType>::call(findLSB, x); |
|
|
|
return detail::functor1<int, T, P, vecType>::call(findLSB, x); |
|
|
|
} |
|
|
|
} |
|
|
|