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 vecType>
00032 bool operator== (vecType const & x, vecType const & y);
00033
00036 template <typename vecType>
00037 bool operator!= (vecType const & x, vecType const & y);
00038
00039 }
00040 }
00041 }
00042
00043 #define GLM_GTX_comparison namespace glm::gtx::comparison
00044 #ifndef GLM_GTX_GLOBAL
00045 namespace glm {using GLM_GTX_comparison;}
00046 #endif//GLM_GTC_GLOBAL
00047
00048 #include "comparison.inl"
00049
00050 #endif//glm_gtx_comparison