|
GraphicsAPI_2020C
|
GLM_EXT_vector_integer More...
#include "../detail/setup.hpp"#include "../detail/qualifier.hpp"#include "../detail/_vectorize.hpp"#include "../vector_relational.hpp"#include "../common.hpp"#include <limits>#include "vector_integer.inl"
Go to the source code of this file.
Namespaces | |
| glm | |
| Core features | |
Functions | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, bool, Q > | glm::isPowerOfTwo (vec< L, T, Q > const &v) |
| Return true if the value is a power of two number. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, T, Q > | glm::nextPowerOfTwo (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<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, T, Q > | glm::prevPowerOfTwo (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<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, bool, Q > | glm::isMultiple (vec< L, T, Q > const &v, T Multiple) |
| Return true if the 'Value' is a multiple of 'Multiple'. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, bool, Q > | glm::isMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
| Return true if the 'Value' is a multiple of 'Multiple'. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, T, Q > | glm::nextMultiple (vec< L, T, Q > const &v, T Multiple) |
| Higher multiple number of Source. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, T, Q > | glm::nextMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
| Higher multiple number of Source. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, T, Q > | glm::prevMultiple (vec< L, T, Q > const &v, T Multiple) |
| Lower multiple number of Source. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, T, Q > | glm::prevMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple) |
| Lower multiple number of Source. More... | |
| template<length_t L, typename T , qualifier Q> | |
| GLM_FUNC_DECL vec< L, int, Q > | glm::findNSB (vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount) |
| Returns the bit number of the Nth significant bit set to 1 in the binary representation of value. More... | |
1.8.13