Added GLM

This commit is contained in:
Robert 2021-01-21 19:19:44 +01:00
parent 1c008b1c9d
commit 98425f45c8
420 changed files with 62430 additions and 0 deletions

32
vendor/include/glm/ext/vector_uint1.hpp vendored Normal file
View file

@ -0,0 +1,32 @@
/// @ref ext_vector_uint1
/// @file glm/ext/vector_uint1.hpp
///
/// @defgroup ext_vector_uint1 GLM_EXT_vector_uint1
/// @ingroup ext
///
/// Exposes uvec1 vector type.
///
/// Include <glm/ext/vector_uvec1.hpp> to use the features of this extension.
///
/// @see ext_vector_int1 extension.
/// @see ext_vector_uint1_precision extension.
#pragma once
#include "../detail/type_vec1.hpp"
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
# pragma message("GLM: GLM_EXT_vector_uint1 extension included")
#endif
namespace glm
{
/// @addtogroup ext_vector_uint1
/// @{
/// 1 component vector of unsigned integer numbers.
typedef vec<1, unsigned int, defaultp> uvec1;
/// @}
}//namespace glm