00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_img_wrap
00014 #define glm_img_wrap
00015
00016
00017 #include "../glm.hpp"
00018
00019 namespace glm
00020 {
00021 namespace test{
00022 bool main_img_wrap();
00023 }
00024
00025 namespace img{
00027 namespace wrap
00028 {
00031 template <typename genType>
00032 genType clamp(genType const & Texcoord);
00033
00036 template <typename genType>
00037 genType repeat(genType const & Texcoord);
00038
00041 template <typename genType>
00042 genType mirrorRepeat(genType const & Texcoord);
00043
00044 }
00045 }
00046 }
00047
00048 #include "wrap.inl"
00049
00050 namespace glm{using namespace img::wrap;}
00051
00052 #endif//glm_img_wrap