GLM Version 0.9.0

wrap.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
00004 // Created : 2009-11-25
00005 // Updated : 2009-11-25
00006 // Licence : This source is under MIT License
00007 // File    : glm/img/wrap.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_img_wrap
00014 #define glm_img_wrap
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 
00019 namespace glm
00020 {
00021         namespace test{
00022                 bool main_img_wrap();
00023         }//namespace test
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         }//namespace wrap
00045         }//namespace img
00046 }//namespace glm
00047 
00048 #include "wrap.inl"
00049 
00050 namespace glm{using namespace img::wrap;}
00051 
00052 #endif//glm_img_wrap