00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_comparison
00014 #define glm_gtx_comparison
00015
00016
00017 #include "../glm.hpp"
00018
00019 namespace glm
00020 {
00021 namespace test{
00022 void main_gtx_comparison();
00023 }
00024
00025 namespace gtx{
00027 namespace comparison{
00028
00031 template <typename T>
00032 bool operator== (
00033 detail::tvec2<T> const & x,
00034 detail::tvec2<T> const & y);
00035
00038 template <typename T>
00039 bool operator== (
00040 detail::tvec3<T> const & x,
00041 detail::tvec3<T> const & y);
00042
00045 template <typename T>
00046 bool operator== (
00047 detail::tvec4<T> const & x,
00048 detail::tvec4<T> const & y);
00049
00052 template <typename T>
00053 bool operator!= (
00054 detail::tvec2<T> const & x,
00055 detail::tvec2<T> const & y);
00056
00059 template <typename T>
00060 bool operator!= (
00061 detail::tvec3<T> const & x,
00062 detail::tvec3<T> const & y);
00063
00066 template <typename T>
00067 bool operator!= (
00068 detail::tvec4<T> const & x,
00069 detail::tvec4<T> const & y);
00070
00071 }
00072 }
00073 }
00074
00075 #include "comparison.inl"
00076
00077 using namespace glm::gtx::comparison;
00078
00079 #endif//glm_gtx_comparison