17#include "../gtc/integer.hpp"
19#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
20# ifndef GLM_ENABLE_EXPERIMENTAL
21# pragma message("GLM: GLM_GTX_integer is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
23# pragma message("GLM: GLM_GTX_integer extension included")
34 GLM_FUNC_DECL
int pow(
int x, uint y);
38 GLM_FUNC_DECL
int sqrt(
int x);
46 GLM_FUNC_DECL
int mod(
int x,
int y);
50 template<
typename genType>
59 GLM_FUNC_DECL uint
pow(uint x, uint y);
63 GLM_FUNC_DECL uint
sqrt(uint x);
67 GLM_FUNC_DECL uint mod(uint x, uint y);
71 GLM_FUNC_DECL uint
nlz(uint x);
GLM_FUNC_DECL vec< L, T, Q > sqrt(vec< L, T, Q > const &v)
Returns the positive square root of v.
GLM_FUNC_DECL vec< L, T, Q > pow(vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)
Returns 'base' raised to the power 'exponent'.
GLM_FUNC_DECL genType factorial(genType const &x)
Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension.
GLM_FUNC_DECL unsigned int floor_log2(unsigned int x)
Returns the floor log2 of x.
GLM_FUNC_DECL uint nlz(uint x)
Returns the number of leading zeros.
signed int sint
32bit signed integer.