|
template<typename genIUType > |
GLM_FUNC_DECL genIUType | glm::ceilPowerOfTwo (genIUType v) |
| Return the power of two number which value is just higher the input value, round up to a power of two. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::ceilPowerOfTwo (vec< L, T, Q > const &v) |
| Return the power of two number which value is just higher the input value, round up to a power of two. More...
|
|
template<typename genIUType > |
GLM_FUNC_DECL genIUType | glm::floorPowerOfTwo (genIUType v) |
| Return the power of two number which value is just lower the input value, round down to a power of two. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::floorPowerOfTwo (vec< L, T, Q > const &v) |
| Return the power of two number which value is just lower the input value, round down to a power of two. More...
|
|
template<typename genIUType > |
GLM_FUNC_DECL genIUType | glm::roundPowerOfTwo (genIUType v) |
| Return the power of two number which value is the closet to the input value. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::roundPowerOfTwo (vec< L, T, Q > const &v) |
| Return the power of two number which value is the closet to the input value. More...
|
|
template<typename genType > |
GLM_FUNC_DECL genType | glm::ceilMultiple (genType v, genType Multiple) |
| Higher multiple number of Source. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::ceilMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
| Higher multiple number of Source. More...
|
|
template<typename genType > |
GLM_FUNC_DECL genType | glm::floorMultiple (genType v, genType Multiple) |
| Lower multiple number of Source. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::floorMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
| Lower multiple number of Source. More...
|
|
template<typename genType > |
GLM_FUNC_DECL genType | glm::roundMultiple (genType v, genType Multiple) |
| Lower multiple number of Source. More...
|
|
template<length_t L, typename T , qualifier Q> |
GLM_FUNC_DECL vec< L, T, Q > | glm::roundMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
| Lower multiple number of Source. More...
|
|