vector_bool1.hpp 649 B

123456789101112131415161718192021222324252627282930
  1. /// @ref ext_vector_bool1
  2. /// @file glm/ext/vector_bool1.hpp
  3. ///
  4. /// @defgroup ext_vector_bool1 GLM_EXT_vector_bool1
  5. /// @ingroup ext
  6. ///
  7. /// Exposes bvec1 vector type.
  8. ///
  9. /// Include <glm/ext/vector_bool1.hpp> to use the features of this extension.
  10. ///
  11. /// @see ext_vector_bool1_precision extension.
  12. #pragma once
  13. #include "../detail/type_vec1.hpp"
  14. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  15. # pragma message("GLM: GLM_EXT_vector_bool1 extension included")
  16. #endif
  17. namespace glm
  18. {
  19. /// @addtogroup ext_vector_bool1
  20. /// @{
  21. /// 1 components vector of boolean.
  22. typedef vec<1, bool, defaultp> bvec1;
  23. /// @}
  24. }//namespace glm