summaryrefslogblamecommitdiffstats
path: root/external/include/glm/gtx/optimum_pow.inl
blob: 78b729f7b2092ac634ceafdcd40f00db8acc5954 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                 

                                                         



                             

                                                         



                                 

                                                         



                                         
/// @ref gtx_optimum_pow
/// @file glm/gtx/optimum_pow.inl

namespace glm
{
	template<typename genType>
	GLM_FUNC_QUALIFIER genType pow2(genType const& x)
	{
		return x * x;
	}

	template<typename genType>
	GLM_FUNC_QUALIFIER genType pow3(genType const& x)
	{
		return x * x * x;
	}

	template<typename genType>
	GLM_FUNC_QUALIFIER genType pow4(genType const& x)
	{
		return (x * x) * (x * x);
	}
}//namespace glm