wrap.hpp 863 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /// @ref gtx_wrap
  2. /// @file glm/gtx/wrap.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtx_wrap GLM_GTX_wrap
  7. /// @ingroup gtx
  8. ///
  9. /// Include <glm/gtx/wrap.hpp> to use the features of this extension.
  10. ///
  11. /// Wrapping mode of texture coordinates.
  12. #pragma once
  13. // Dependency:
  14. #include "../glm.hpp"
  15. #include "../ext/scalar_common.hpp"
  16. #include "../ext/vector_common.hpp"
  17. #include "../gtc/vec1.hpp"
  18. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  19. # ifndef GLM_ENABLE_EXPERIMENTAL
  20. # pragma message("GLM: GLM_GTX_wrap is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
  21. # else
  22. # pragma message("GLM: GLM_GTX_wrap extension included")
  23. # endif
  24. #endif
  25. namespace glm
  26. {
  27. /// @addtogroup gtx_wrap
  28. /// @{
  29. /// @}
  30. }// namespace glm
  31. #include "wrap.inl"