From 6f67371bb1b46579ae837d0e0c61ac1b291be743 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sat, 13 Jan 2018 07:51:33 +0500 Subject: Directory renamed --- depedencies/include/glm/gtx/extended_min_max.inl | 140 ----------------------- 1 file changed, 140 deletions(-) delete mode 100644 depedencies/include/glm/gtx/extended_min_max.inl (limited to 'depedencies/include/glm/gtx/extended_min_max.inl') diff --git a/depedencies/include/glm/gtx/extended_min_max.inl b/depedencies/include/glm/gtx/extended_min_max.inl deleted file mode 100644 index 64ea445..0000000 --- a/depedencies/include/glm/gtx/extended_min_max.inl +++ /dev/null @@ -1,140 +0,0 @@ -/// @ref gtx_extended_min_max -/// @file glm/gtx/extended_min_max.inl - -namespace glm -{ - template - GLM_FUNC_QUALIFIER T min( - T const & x, - T const & y, - T const & z) - { - return glm::min(glm::min(x, y), z); - } - - template class C> - GLM_FUNC_QUALIFIER C min - ( - C const & x, - typename C::T const & y, - typename C::T const & z - ) - { - return glm::min(glm::min(x, y), z); - } - - template class C> - GLM_FUNC_QUALIFIER C min - ( - C const & x, - C const & y, - C const & z - ) - { - return glm::min(glm::min(x, y), z); - } - - template - GLM_FUNC_QUALIFIER T min - ( - T const & x, - T const & y, - T const & z, - T const & w - ) - { - return glm::min(glm::min(x, y), glm::min(z, w)); - } - - template class C> - GLM_FUNC_QUALIFIER C min - ( - C const & x, - typename C::T const & y, - typename C::T const & z, - typename C::T const & w - ) - { - return glm::min(glm::min(x, y), glm::min(z, w)); - } - - template class C> - GLM_FUNC_QUALIFIER C min - ( - C const & x, - C const & y, - C const & z, - C const & w - ) - { - return glm::min(glm::min(x, y), glm::min(z, w)); - } - - template - GLM_FUNC_QUALIFIER T max( - T const & x, - T const & y, - T const & z) - { - return glm::max(glm::max(x, y), z); - } - - template class C> - GLM_FUNC_QUALIFIER C max - ( - C const & x, - typename C::T const & y, - typename C::T const & z - ) - { - return glm::max(glm::max(x, y), z); - } - - template class C> - GLM_FUNC_QUALIFIER C max - ( - C const & x, - C const & y, - C const & z - ) - { - return glm::max(glm::max(x, y), z); - } - - template - GLM_FUNC_QUALIFIER T max - ( - T const & x, - T const & y, - T const & z, - T const & w - ) - { - return glm::max(glm::max(x, y), glm::max(z, w)); - } - - template class C> - GLM_FUNC_QUALIFIER C max - ( - C const & x, - typename C::T const & y, - typename C::T const & z, - typename C::T const & w - ) - { - return glm::max(glm::max(x, y), glm::max(z, w)); - } - - template class C> - GLM_FUNC_QUALIFIER C max - ( - C const & x, - C const & y, - C const & z, - C const & w - ) - { - return glm::max(glm::max(x, y), glm::max(z, w)); - } - -}//namespace glm -- cgit v1.2.3