From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtc/integer.hpp | 67 ++++++++---------------------------- 1 file changed, 15 insertions(+), 52 deletions(-) (limited to 'external/include/glm/gtc/integer.hpp') diff --git a/external/include/glm/gtc/integer.hpp b/external/include/glm/gtc/integer.hpp index 69ffb1d..1d28c32 100644 --- a/external/include/glm/gtc/integer.hpp +++ b/external/include/glm/gtc/integer.hpp @@ -7,18 +7,18 @@ /// @defgroup gtc_integer GLM_GTC_integer /// @ingroup gtc /// -/// @brief Allow to perform bit operations on integer values +/// Include to use the features of this extension. /// -/// need to be included to use these functionalities. +/// @brief Allow to perform bit operations on integer values #pragma once // Dependencies #include "../detail/setup.hpp" -#include "../detail/precision.hpp" -#include "../detail/func_common.hpp" -#include "../detail/func_integer.hpp" -#include "../detail/func_exponential.hpp" +#include "../detail/qualifier.hpp" +#include "../common.hpp" +#include "../integer.hpp" +#include "../exponential.hpp" #include #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) @@ -32,69 +32,32 @@ namespace glm /// Returns the log2 of x for integer values. Can be reliably using to compute mipmap count from the texture size. /// @see gtc_integer - template + template GLM_FUNC_DECL genIUType log2(genIUType x); - /// Modulus. Returns x % y - /// for each component in x using the floating point value y. - /// - /// @tparam genIUType Integer-point scalar or vector types. - /// - /// @see gtc_integer - /// @see GLSL mod man page - /// @see GLSL 4.20.8 specification, section 8.3 Common Functions - template - GLM_FUNC_DECL genIUType mod(genIUType x, genIUType y); - - /// Modulus. Returns x % y - /// for each component in x using the floating point value y. - /// - /// @tparam T Integer scalar types. - /// @tparam vecType vector types. - /// - /// @see gtc_integer - /// @see GLSL mod man page - /// @see GLSL 4.20.8 specification, section 8.3 Common Functions - template class vecType> - GLM_FUNC_DECL vecType mod(vecType const & x, T y); - - /// Modulus. Returns x % y - /// for each component in x using the floating point value y. - /// - /// @tparam T Integer scalar types. - /// @tparam vecType vector types. - /// - /// @see gtc_integer - /// @see GLSL mod man page - /// @see GLSL 4.20.8 specification, section 8.3 Common Functions - template class vecType> - GLM_FUNC_DECL vecType mod(vecType const & x, vecType const & y); - /// Returns a value equal to the nearest integer to x. /// The fraction 0.5 will round in a direction chosen by the /// implementation, presumably the direction that is fastest. - /// + /// /// @param x The values of the argument must be greater or equal to zero. /// @tparam T floating point scalar types. - /// @tparam vecType vector types. - /// + /// /// @see GLSL round man page /// @see gtc_integer - template class vecType> - GLM_FUNC_DECL vecType iround(vecType const & x); + template + GLM_FUNC_DECL vec iround(vec const& x); /// Returns a value equal to the nearest integer to x. /// The fraction 0.5 will round in a direction chosen by the /// implementation, presumably the direction that is fastest. - /// + /// /// @param x The values of the argument must be greater or equal to zero. /// @tparam T floating point scalar types. - /// @tparam vecType vector types. - /// + /// /// @see GLSL round man page /// @see gtc_integer - template class vecType> - GLM_FUNC_DECL vecType uround(vecType const & x); + template + GLM_FUNC_DECL vec uround(vec const& x); /// @} } //namespace glm -- cgit v1.2.3