Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef GLM_GTX_ulp
00040 #define GLM_GTX_ulp GLM_VERSION
00041
00042
00043 #include "../glm.hpp"
00044
00045 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00046 # pragma message("GLM: GLM_GTX_ulp extension included")
00047 #endif
00048
00049 namespace glm
00050 {
00053
00056 template <typename genType>
00057 genType next_float(genType const & x);
00058
00061 template <typename genType>
00062 genType prev_float(genType const & x);
00063
00066 template <typename genType>
00067 genType next_float(genType const & x, uint const & Distance);
00068
00071 template <typename genType>
00072 genType prev_float(genType const & x, uint const & Distance);
00073
00076 template <typename T>
00077 uint float_distance(T const & x, T const & y);
00078
00081 template<typename T, template<typename> class vecType>
00082 vecType<uint> float_distance(vecType<T> const & x, vecType<T> const & y);
00083
00085 }
00086
00087 #include "ulp.inl"
00088
00089 #endif//GLM_GTX_ulp
00090