wrap.hpp 837 B

1234567891011121314151617181920212223242526272829303132333435
  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. #ifndef GLM_ENABLE_EXPERIMENTAL
  19. # error "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."
  20. #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  21. # pragma message("GLM: GLM_GTX_wrap extension included")
  22. #endif
  23. namespace glm
  24. {
  25. /// @addtogroup gtx_wrap
  26. /// @{
  27. /// @}
  28. }// namespace glm
  29. #include "wrap.inl"