vector_uint1.hpp 711 B

1234567891011121314151617181920212223242526272829303132
  1. /// @ref ext_vector_uint1
  2. /// @file glm/ext/vector_uint1.hpp
  3. ///
  4. /// @defgroup ext_vector_uint1 GLM_EXT_vector_uint1
  5. /// @ingroup ext
  6. ///
  7. /// Exposes uvec1 vector type.
  8. ///
  9. /// Include <glm/ext/vector_uvec1.hpp> to use the features of this extension.
  10. ///
  11. /// @see ext_vector_int1 extension.
  12. /// @see ext_vector_uint1_precision extension.
  13. #pragma once
  14. #include "../detail/type_vec1.hpp"
  15. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  16. # pragma message("GLM: GLM_EXT_vector_uint1 extension included")
  17. #endif
  18. namespace glm
  19. {
  20. /// @addtogroup ext_vector_uint1
  21. /// @{
  22. /// 1 component vector of unsigned integer numbers.
  23. typedef vec<1, unsigned int, defaultp> uvec1;
  24. /// @}
  25. }//namespace glm