Cinder  0.9.1
Namespaces | Functions
func_integer.inl File Reference
#include "type_vec2.hpp"
#include "type_vec3.hpp"
#include "type_vec4.hpp"
#include "type_int.hpp"
#include "_vectorize.hpp"
#include <limits>

Namespaces

 glm
 
 glm::detail
 

Functions

template<typename T >
GLM_FUNC_QUALIFIERglm::detail::mask (T Bits)
 
GLM_FUNC_QUALIFIER uint glm::uaddCarry (uint const &x, uint const &y, uint &Carry)
 
template<precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER vecType< uint, P > glm::uaddCarry (vecType< uint, P > const &x, vecType< uint, P > const &y, vecType< uint, P > &Carry)
 
GLM_FUNC_QUALIFIER uint glm::usubBorrow (uint const &x, uint const &y, uint &Borrow)
 
template<precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER vecType< uint, P > glm::usubBorrow (vecType< uint, P > const &x, vecType< uint, P > const &y, vecType< uint, P > &Borrow)
 
GLM_FUNC_QUALIFIER void glm::umulExtended (uint const &x, uint const &y, uint &msb, uint &lsb)
 
template<precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER void glm::umulExtended (vecType< uint, P > const &x, vecType< uint, P > const &y, vecType< uint, P > &msb, vecType< uint, P > &lsb)
 
GLM_FUNC_QUALIFIER void glm::imulExtended (int x, int y, int &msb, int &lsb)
 
template<precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER void glm::imulExtended (vecType< int, P > const &x, vecType< int, P > const &y, vecType< int, P > &msb, vecType< int, P > &lsb)
 
template<typename genIUType >
GLM_FUNC_QUALIFIER genIUType glm::bitfieldExtract (genIUType Value, int Offset, int Bits)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER vecType< T, P > glm::bitfieldExtract (vecType< T, P > const &Value, int Offset, int Bits)
 
template<typename genIUType >
GLM_FUNC_QUALIFIER genIUType glm::bitfieldInsert (genIUType const &Base, genIUType const &Insert, int Offset, int Bits)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER vecType< T, P > glm::bitfieldInsert (vecType< T, P > const &Base, vecType< T, P > const &Insert, int Offset, int Bits)
 
template<typename genType >
GLM_FUNC_QUALIFIER genType glm::bitfieldReverse (genType x)
 
template<typename T , glm::precision P, template< typename, glm::precision > class vecType>
GLM_FUNC_QUALIFIER vecType< T, P > glm::bitfieldReverse (vecType< T, P > const &v)
 
template<typename genType >
GLM_FUNC_QUALIFIER int glm::bitCount (genType x)
 
template<typename T , glm::precision P, template< typename, glm::precision > class vecType>
GLM_FUNC_QUALIFIER vecType< int, P > glm::bitCount (vecType< T, P > const &v)
 
template<typename genIUType >
GLM_FUNC_QUALIFIER int glm::findLSB (genIUType Value)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER vecType< int, P > glm::findLSB (vecType< T, P > const &x)
 
template<typename genIUType >
GLM_FUNC_QUALIFIER int glm::findMSB (genIUType x)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_QUALIFIER vecType< int, P > glm::findMSB (vecType< T, P > const &x)
 

Detailed Description

OpenGL Mathematics (glm.g-truc.net)

Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

Restrictions: By making use of the Software for military purposes, you choose to make a Bunny unhappy.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

GLM Core

Date
2010-03-17 / 2011-06-15
Author
Christophe Riccio