matrix_uint4x3.hpp 705 B

123456789101112131415161718192021222324252627282930313233
  1. /// @ref ext_matrix_uint4x3
  2. /// @file glm/ext/matrix_uint4x3.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup ext_matrix_uint4x3 GLM_EXT_matrix_uint4x3
  7. /// @ingroup ext
  8. ///
  9. /// Include <glm/ext/matrix_uint4x3.hpp> to use the features of this extension.
  10. ///
  11. /// Defines a number of matrices with integer types.
  12. #pragma once
  13. // Dependency:
  14. #include "../mat4x3.hpp"
  15. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  16. # pragma message("GLM: GLM_EXT_matrix_uint4x3 extension included")
  17. #endif
  18. namespace glm
  19. {
  20. /// @addtogroup ext_matrix_uint4x3
  21. /// @{
  22. /// Unsigned integer 4x3 matrix.
  23. ///
  24. /// @see ext_matrix_uint4x3
  25. typedef mat<4, 3, uint, defaultp> umat4x3;
  26. /// @}
  27. }//namespace glm