ulp.hpp 625 B

12345678910111213141516171819202122232425
  1. /// @ref gtc_ulp
  2. /// @file glm/gtc/ulp.hpp
  3. ///
  4. /// @see core (dependence)
  5. ///
  6. /// @defgroup gtc_ulp GLM_GTC_ulp
  7. /// @ingroup gtc
  8. ///
  9. /// Include <glm/gtc/ulp.hpp> to use the features of this extension.
  10. ///
  11. /// Allow the measurement of the accuracy of a function against a reference
  12. /// implementation. This extension works on floating-point data and provide results
  13. /// in ULP.
  14. #pragma once
  15. // Dependencies
  16. #include "../ext/scalar_ulp.hpp"
  17. #include "../ext/vector_ulp.hpp"
  18. #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
  19. # pragma message("GLM: GLM_GTC_ulp extension included")
  20. #endif