matrix_int2x4.hpp 694 B

123456789101112131415161718192021222324252627282930313233
  1. /// @ref ext_matrix_int2x4
  2. /// @file glm/ext/matrix_int2x4.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup ext_matrix_int2x4 GLM_EXT_matrix_int2x4
  7. /// @ingroup ext
  8. ///
  9. /// Include <glm/ext/matrix_int2x4.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 "../mat2x4.hpp"
  15. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  16. # pragma message("GLM: GLM_EXT_matrix_int2x4 extension included")
  17. #endif
  18. namespace glm
  19. {
  20. /// @addtogroup ext_matrix_int2x4
  21. /// @{
  22. /// Signed integer 2x4 matrix.
  23. ///
  24. /// @see ext_matrix_int2x4
  25. typedef mat<2, 4, int, defaultp> imat2x4;
  26. /// @}
  27. }//namespace glm