matrix_uint2x2.hpp 816 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /// @ref ext_matrix_uint2x2
  2. /// @file glm/ext/matrix_uint2x2.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup ext_matrix_uint2x2 GLM_EXT_matrix_uint2x2
  7. /// @ingroup ext
  8. ///
  9. /// Include <glm/ext/matrix_uint2x2.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 "../mat2x2.hpp"
  15. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  16. # pragma message("GLM: GLM_EXT_matrix_uint2x2 extension included")
  17. #endif
  18. namespace glm
  19. {
  20. /// @addtogroup ext_matrix_uint2x2
  21. /// @{
  22. /// Unsigned integer 2x2 matrix.
  23. ///
  24. /// @see ext_matrix_uint2x2
  25. typedef mat<2, 2, uint, defaultp> umat2x2;
  26. /// Unsigned integer 2x2 matrix.
  27. ///
  28. /// @see ext_matrix_uint2x2
  29. typedef mat<2, 2, uint, defaultp> umat2;
  30. /// @}
  31. }//namespace glm