glm/glm/gtx/wrap.inl

150 lines
4.2 KiB
Plaintext
Raw Normal View History

2014-11-25 23:27:12 +00:00
/// @ref gtx_wrap
/// @file glm/gtx/wrap.inl
2010-04-29 10:54:07 +00:00
2011-10-14 13:07:53 +00:00
namespace glm
2010-04-29 10:54:07 +00:00
{
2011-10-14 13:07:53 +00:00
template <typename genType>
2015-06-27 17:36:03 +00:00
GLM_FUNC_QUALIFIER genType clamp(genType const & Texcoord)
2011-10-14 13:07:53 +00:00
{
return glm::clamp(Texcoord, genType(0), genType(1));
}
2013-12-18 18:54:39 +00:00
template <typename T, precision P>
2015-06-27 17:36:03 +00:00
GLM_FUNC_QUALIFIER tvec2<T, P> clamp(tvec2<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec2<T, P> Result;
for(typename tvec2<T, P>::size_type i = 0; i < tvec2<T, P>::value_size(); ++i)
2015-06-27 17:36:03 +00:00
Result[i] = clamp_to_edge(Texcoord[i]);
2011-10-14 13:07:53 +00:00
return Result;
}
2013-12-18 18:54:39 +00:00
template <typename T, precision P>
2015-06-27 17:36:03 +00:00
GLM_FUNC_QUALIFIER tvec3<T, P> clamp(tvec3<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec3<T, P> Result;
for(typename tvec3<T, P>::size_type i = 0; i < tvec3<T, P>::value_size(); ++i)
2015-06-27 17:36:03 +00:00
Result[i] = clamp_to_edge(Texcoord[i]);
2011-10-14 13:07:53 +00:00
return Result;
}
2013-12-18 18:54:39 +00:00
template <typename T, precision P>
2015-06-27 17:36:03 +00:00
GLM_FUNC_QUALIFIER tvec4<T, P> clamp(tvec4<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec4<T, P> Result;
for(typename tvec4<T, P>::size_type i = 0; i < tvec4<T, P>::value_size(); ++i)
2015-06-27 17:36:03 +00:00
Result[i] = clamp_to_edge(Texcoord[i]);
2011-10-14 13:07:53 +00:00
return Result;
}
2015-06-27 17:36:03 +00:00
template <typename genType>
GLM_FUNC_QUALIFIER genType repeat(genType const & Texcoord)
2011-10-14 13:07:53 +00:00
{
return glm::fract(Texcoord);
}
2015-06-27 17:36:03 +00:00
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec2<T, P> repeat(tvec2<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec2<T, P> Result;
for(typename tvec2<T, P>::size_type i = 0; i < tvec2<T, P>::value_size(); ++i)
2011-10-14 13:07:53 +00:00
Result[i] = repeat(Texcoord[i]);
return Result;
}
2015-06-27 17:36:03 +00:00
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec3<T, P> repeat(tvec3<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec3<T, P> Result;
for(typename tvec3<T, P>::size_type i = 0; i < tvec3<T, P>::value_size(); ++i)
2011-10-14 13:07:53 +00:00
Result[i] = repeat(Texcoord[i]);
return Result;
}
2015-06-27 17:36:03 +00:00
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec4<T, P> repeat(tvec4<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec4<T, P> Result;
for(typename tvec4<T, P>::size_type i = 0; i < tvec4<T, P>::value_size(); ++i)
2011-10-14 13:07:53 +00:00
Result[i] = repeat(Texcoord[i]);
return Result;
}
2015-06-27 18:12:27 +00:00
template <typename genType>
GLM_FUNC_QUALIFIER genType mirrorClamp(genType const & Texcoord)
{
return glm::fract(glm::abs(Texcoord));
//return glm::mod(glm::abs(Texcoord), 1.0f);
}
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec2<T, P> mirrorClamp(tvec2<T, P> const & Texcoord)
{
tvec2<T, P> Result;
for(typename tvec2<T, P>::size_type i = 0; i < tvec2<T, P>::value_size(); ++i)
Result[i] = mirrorClamp(Texcoord[i]);
return Result;
}
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec3<T, P> mirrorClamp(tvec3<T, P> const & Texcoord)
{
tvec3<T, P> Result;
for(typename tvec3<T, P>::size_type i = 0; i < tvec3<T, P>::value_size(); ++i)
Result[i] = mirrorClamp(Texcoord[i]);
return Result;
}
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec4<T, P> mirrorClamp(tvec4<T, P> const & Texcoord)
{
tvec4<T, P> Result;
for(typename tvec4<T, P>::size_type i = 0; i < tvec4<T, P>::value_size(); ++i)
Result[i] = mirrorClamp(Texcoord[i]);
return Result;
}
2015-06-27 17:36:03 +00:00
template <typename genType>
GLM_FUNC_QUALIFIER genType mirrorRepeat(genType const & Texcoord)
2011-10-14 13:07:53 +00:00
{
2015-06-27 17:36:03 +00:00
genType const Abs = glm::abs(Texcoord);
genType const Clamp = genType(int(glm::floor(Abs)) % 2);
genType const Floor = glm::floor(Abs);
genType const Rest = Abs - Floor;
2011-10-14 13:07:53 +00:00
genType const Mirror = Clamp + Rest;
genType Out;
if(Mirror >= genType(1))
Out = genType(1) - Rest;
else
Out = Rest;
return Out;
}
2015-06-27 17:36:03 +00:00
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec2<T, P> mirrorRepeat(tvec2<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec2<T, P> Result;
for(typename tvec2<T, P>::size_type i = 0; i < tvec2<T, P>::value_size(); ++i)
2011-10-14 13:07:53 +00:00
Result[i] = mirrorRepeat(Texcoord[i]);
return Result;
}
2015-06-27 17:36:03 +00:00
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec3<T, P> mirrorRepeat(tvec3<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec3<T, P> Result;
for(typename tvec3<T, P>::size_type i = 0; i < tvec3<T, P>::value_size(); ++i)
2011-10-14 13:07:53 +00:00
Result[i] = mirrorRepeat(Texcoord[i]);
return Result;
}
2015-06-27 17:36:03 +00:00
template <typename T, precision P>
GLM_FUNC_QUALIFIER tvec4<T, P> mirrorRepeat(tvec4<T, P> const & Texcoord)
2011-10-14 13:07:53 +00:00
{
tvec4<T, P> Result;
for(typename tvec4<T, P>::size_type i = 0; i < tvec4<T, P>::value_size(); ++i)
2011-10-14 13:07:53 +00:00
Result[i] = mirrorRepeat(Texcoord[i]);
return Result;
}
2010-04-29 10:54:07 +00:00
}//namespace glm