parent
26be7bda82
commit
6d34ae4c5e
115 changed files with 207 additions and 286 deletions
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/dmat2x2.hpp
|
||||
/// @file glm/ext/matrix_double2x2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat2x2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat2x3.hpp
|
||||
/// @file glm/ext/matrix_double2x3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat2x3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat2x4.hpp
|
||||
/// @file glm/ext/matrix_double2x4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat2x4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat3x2.hpp
|
||||
/// @file glm/ext/matrix_double3x2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat3x2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat3x3.hpp
|
||||
/// @file glm/ext/matrix_double3x3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat3x3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat3x4.hpp
|
||||
/// @file glm/ext/matrix_double3x4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat3x4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat4x2.hpp
|
||||
/// @file glm/ext/matrix_double4x2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat4x2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat4x3.hpp
|
||||
/// @file glm/ext/matrix_double4x3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat4x3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_dmat4x4.hpp
|
||||
/// @file glm/ext/matrix_double4x4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat4x4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat2x2.hpp
|
||||
/// @file glm/ext/matrix_float2x2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat2x2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat2x3.hpp
|
||||
/// @file glm/ext/matrix_float2x3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat2x3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat2x4.hpp
|
||||
/// @file glm/ext/matrix_float2x4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat2x4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat3x2.hpp
|
||||
/// @file glm/ext/matrix_float3x2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat3x2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat3x3.hpp
|
||||
/// @file glm/ext/matrix_float3x3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat3x3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat3x4.hpp
|
||||
/// @file glm/ext/matrix_float3x4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat3x4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat4x2.hpp
|
||||
/// @file glm/ext/matrix_float4x2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat4x2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat4x3.hpp
|
||||
/// @file glm/ext/matrix_float4x3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat4x3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/matrix_mat4x4.hpp
|
||||
/// @file glm/ext/matrix_float4x4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_mat4x4.hpp" |
@ -1,21 +0,0 @@ |
||||
/// @ref core
|
||||
/// @file glm/vec1.hpp
|
||||
|
||||
#pragma once |
||||
#include "vector_bvec1.hpp" |
||||
#include "vector_bvec1_precision.hpp" |
||||
#include "vector_vec1.hpp" |
||||
#include "vector_vec1_precision.hpp" |
||||
#include "vector_dvec1.hpp" |
||||
#include "vector_dvec1_precision.hpp" |
||||
#include "vector_ivec1.hpp" |
||||
#include "vector_ivec1_precision.hpp" |
||||
#include "vector_uvec1.hpp" |
||||
#include "vector_uvec1_precision.hpp" |
||||
|
||||
namespace glm |
||||
{ |
||||
# if GLM_HAS_TEMPLATE_ALIASES |
||||
template <typename T, qualifier Q = defaultp> using tvec1 = vec<1, T, Q>; |
||||
# endif |
||||
}//namespace glm
|
@ -1,9 +1,9 @@ |
||||
/// @ref ext_vector_bvec1
|
||||
/// @file glm/ext/vector_bvec1.hpp
|
||||
/// @file glm/ext/vector_bool1.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
||||
/// @defgroup ext_vector_bvec1 GLM_EXT_vector_bvec1
|
||||
/// @defgroup ext_vector_bool1 GLM_EXT_vector_bool1
|
||||
/// @ingroup ext
|
||||
///
|
||||
/// Include <glm/ext/vector_bvec1.hpp> to use the features of this extension.
|
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/bvec2.hpp
|
||||
/// @file glm/ext/vector_bool2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/bvec3.hpp
|
||||
/// @file glm/ext/vector_bool3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/bvec4.hpp
|
||||
/// @file glm/ext/vector_bool4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec4.hpp" |
@ -1,12 +1,12 @@ |
||||
/// @ref ext_vector_dvec1
|
||||
/// @file glm/ext/vector_dvec1.hpp
|
||||
/// @ref ext_vector_double1
|
||||
/// @file glm/ext/vector_double1.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
||||
/// @defgroup ext_vector_dvec1 GLM_EXT_vector_dvec1
|
||||
/// @defgroup ext_vector_dvec1 GLM_EXT_vector_double1
|
||||
/// @ingroup ext
|
||||
///
|
||||
/// Include <glm/ext/vector_dvec1.hpp> to use the features of this extension.
|
||||
/// Include <glm/ext/vector_double1.hpp> to use the features of this extension.
|
||||
///
|
||||
/// Expose dvec1 vector type.
|
||||
|
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/dvec2.hpp
|
||||
/// @file glm/ext/vector_double2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/dvec3.hpp
|
||||
/// @file glm/ext/vector_double3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/dvec4.hpp
|
||||
/// @file glm/ext/vector_double4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/ext/vector_vec2.hpp
|
||||
/// @file glm/ext/vector_float2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/fvec3.hpp
|
||||
/// @file glm/ext/vector_float3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/fvec4.hpp
|
||||
/// @file glm/ext/vector_float4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/ivec2.hpp
|
||||
/// @file glm/ext/vector_int2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/ivec3.hpp
|
||||
/// @file glm/ext/vector_int3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/ivec4.hpp
|
||||
/// @file glm/ext/vector_int4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref ext_vector_uvec1
|
||||
/// @file glm/ext/vector_uvec1.hpp
|
||||
/// @file glm/ext/vector_uint1.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/uvec2.hpp
|
||||
/// @file glm/ext/vector_uint2.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/uvec2_precision.hpp
|
||||
/// @file glm/ext/vector_uint2_precision.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec2.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/uvec3.hpp
|
||||
/// @file glm/ext/vector_uint3.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec3.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/uvec3_precision.hpp
|
||||
/// @file glm/ext/vector_uint3_precision.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/setup.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/uvec4.hpp
|
||||
/// @file glm/ext/vector_uint4.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec4.hpp" |
@ -1,5 +1,5 @@ |
||||
/// @ref core
|
||||
/// @file glm/uvec4_precision.hpp
|
||||
/// @file glm/ext/vector_uint4_precision.hpp
|
||||
|
||||
#pragma once |
||||
#include "../detail/type_vec4.hpp" |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue