12345678910111213141516171819202122232425 |
- /// @ref gtc_ulp
- /// @file glm/gtc/ulp.hpp
- ///
- /// @see core (dependence)
- ///
- /// @defgroup gtc_ulp GLM_GTC_ulp
- /// @ingroup gtc
- ///
- /// Include <glm/gtc/ulp.hpp> to use the features of this extension.
- ///
- /// Allow the measurement of the accuracy of a function against a reference
- /// implementation. This extension works on floating-point data and provide results
- /// in ULP.
- #pragma once
- // Dependencies
- #include "../ext/scalar_ulp.hpp"
- #include "../ext/vector_ulp.hpp"
- #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
- # pragma message("GLM: GLM_GTC_ulp extension included")
- #endif
|