mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-18 12:55:38 +00:00
18 lines
309 B
C++
18 lines
309 B
C++
/// @ref gtx_texture
|
|
|
|
namespace glm
|
|
{
|
|
template <length_t L, typename T, qualifier Q>
|
|
inline T levels(vec<L, T, Q> const& Extent)
|
|
{
|
|
return glm::log2(compMax(Extent)) + static_cast<T>(1);
|
|
}
|
|
|
|
template <typename T>
|
|
inline T levels(T Extent)
|
|
{
|
|
return vec<1, T, defaultp>(Extent).x;
|
|
}
|
|
}//namespace glm
|
|
|