mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
0116f4b65d
git-subtree-dir: external/glm git-subtree-split: bf71a834948186f4097caa076cd2663c69a10e1e
17 lines
379 B
C++
17 lines
379 B
C++
/// @ref gtx_log_base
|
|
|
|
namespace glm
|
|
{
|
|
template<typename genType>
|
|
GLM_FUNC_QUALIFIER genType log(genType const& x, genType const& base)
|
|
{
|
|
return glm::log(x) / glm::log(base);
|
|
}
|
|
|
|
template<length_t L, typename T, qualifier Q>
|
|
GLM_FUNC_QUALIFIER vec<L, T, Q> log(vec<L, T, Q> const& x, vec<L, T, Q> const& base)
|
|
{
|
|
return glm::log(x) / glm::log(base);
|
|
}
|
|
}//namespace glm
|