| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /// @ref ext_scalar_float_sized
- /// @file glm/ext/scalar_float_sized.hpp
- ///
- /// @see core (dependence)
- ///
- /// @defgroup ext_scalar_float_sized GLM_EXT_scalar_float_sized
- /// @ingroup ext
- ///
- /// Include <glm/ext/scalar_float_sized.hpp> to use the features of this extension.
- ///
- /// Exposes float scalar type.
- #pragma once
- #include "../detail/setup.hpp"
- #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
- # pragma message("GLM: GLM_EXT_scalar_float_sized extension included")
- #endif
- namespace glm
- {
- /// @addtogroup ext_scalar_float
- /// @{
- /// Low qualifier floating-point numbers.
- /// There is no guarantee on the actual qualifier.
- ///
- /// @see ext_vector_relational
- typedef float float32;
- # ifndef GLM_FORCE_SINGLE_ONLY
- /// Low qualifier floating-point numbers.
- /// There is no guarantee on the actual qualifier.
- ///
- /// @see ext_vector_relational
- typedef double float64;
- # endif//GLM_FORCE_SINGLE_ONLY
- /// @}
- }//namespace glm
|