mirror of
https://github.com/g-truc/glm.git
synced 2024-11-17 15:24:35 +00:00
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Created : 2009-11-25
|
|
// Updated : 2009-11-25
|
|
// Licence : This source is under MIT License
|
|
// File : glm/gtx/wrap.hpp
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Dependency:
|
|
// - GLM core
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef glm_gtx_wrap
|
|
#define glm_gtx_wrap
|
|
|
|
// Dependency:
|
|
#include "../glm.hpp"
|
|
|
|
namespace glm
|
|
{
|
|
namespace test{
|
|
bool main_gtx_wrap();
|
|
}//namespace test
|
|
|
|
namespace gtx{
|
|
//! GLM_GTX_wrap: Wrapping mode using my texture samping.
|
|
namespace wrap
|
|
{
|
|
//! Simulate GL_CLAMP OpenGL wrap mode
|
|
//! From GLM_GTX_wrap extension.
|
|
template <typename genType>
|
|
genType clamp(genType const & Texcoord);
|
|
|
|
//! Simulate GL_REPEAT OpenGL wrap mode
|
|
//! From GLM_GTX_wrap extension.
|
|
template <typename genType>
|
|
genType repeat(genType const & Texcoord);
|
|
|
|
//! Simulate GL_MIRROR_REPEAT OpenGL wrap mode
|
|
//! From GLM_GTX_wrap extension.
|
|
template <typename genType>
|
|
genType mirrorRepeat(genType const & Texcoord);
|
|
|
|
}//namespace wrap
|
|
}//namespace gtx
|
|
}//namespace glm
|
|
|
|
#include "wrap.inl"
|
|
|
|
namespace glm{using namespace gtx::wrap;}
|
|
|
|
#endif//glm_img_wrap
|