glm/test/external/gli/core/levels.inl

25 lines
570 B
Plaintext
Raw Normal View History

2016-11-18 22:16:29 +00:00
#include <glm/gtc/integer.hpp>
2017-01-02 19:52:57 +00:00
#define GLM_ENABLE_EXPERIMENTAL
2016-11-18 22:16:29 +00:00
#include <glm/gtx/component_wise.hpp>
namespace gli
{
2017-01-02 19:52:57 +00:00
template <length_t L, typename T, precision P, template <length_t, typename, precision> class vecType>
inline T levels(vecType<L, T, P> const& Extent)
2016-11-18 22:16:29 +00:00
{
return glm::log2(compMax(Extent)) + static_cast<T>(1);
}
template <typename T>
inline T levels(T Extent)
{
return static_cast<T>(glm::log2(Extent) + static_cast<size_t>(1));
}
/*
inline int levels(int Extent)
{
return glm::log2(Extent) + static_cast<int>(1);
}
*/
}//namespace gli