matrix_uint4x3.hpp 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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
  28. #if GLM_CONFIG_CTOR_INIT == GLM_DISABLE
  29. static_assert(std::is_trivially_default_constructible<glm::umat4x3>::value);
  30. #endif
  31. static_assert(std::is_trivially_copy_assignable<glm::umat4x3>::value);
  32. static_assert(std::is_trivially_copyable<glm::umat4x3>::value);
  33. static_assert(std::is_copy_constructible<glm::umat4x3>::value);
  34. static_assert(glm::umat4x3::length() == 4);