mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 18:48:36 +02:00
+ | Camera system
This commit is contained in:
49
includes/glm/ext/matrix_uint3x4_sized.hpp
Normal file
49
includes/glm/ext/matrix_uint3x4_sized.hpp
Normal file
@ -0,0 +1,49 @@
|
||||
/// @ref ext_matrix_uint3x4_sized
|
||||
/// @file glm/ext/matrix_uint3x2_sized.hpp
|
||||
///
|
||||
/// @see core (dependence)
|
||||
///
|
||||
/// @defgroup ext_matrix_uint3x4_sized GLM_EXT_matrix_uint3x4_sized
|
||||
/// @ingroup ext
|
||||
///
|
||||
/// Include <glm/ext/matrix_uint3x4_sized.hpp> to use the features of this extension.
|
||||
///
|
||||
/// Defines a number of matrices with integer types.
|
||||
|
||||
#pragma once
|
||||
|
||||
// Dependency:
|
||||
#include "../mat3x4.hpp"
|
||||
#include "../ext/scalar_uint_sized.hpp"
|
||||
|
||||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
|
||||
# pragma message("GLM: GLM_EXT_matrix_uint3x4_sized extension included")
|
||||
#endif
|
||||
|
||||
namespace glm
|
||||
{
|
||||
/// @addtogroup ext_matrix_uint3x4_sized
|
||||
/// @{
|
||||
|
||||
/// 8 bit unsigned integer 3x4 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint3x4_sized
|
||||
typedef mat<3, 4, uint8, defaultp> u8mat3x4;
|
||||
|
||||
/// 16 bit unsigned integer 3x4 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint3x4_sized
|
||||
typedef mat<3, 4, uint16, defaultp> u16mat3x4;
|
||||
|
||||
/// 32 bit unsigned integer 3x4 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint3x4_sized
|
||||
typedef mat<3, 4, uint32, defaultp> u32mat3x4;
|
||||
|
||||
/// 64 bit unsigned integer 3x4 matrix.
|
||||
///
|
||||
/// @see ext_matrix_uint3x4_sized
|
||||
typedef mat<3, 4, uint64, defaultp> u64mat3x4;
|
||||
|
||||
/// @}
|
||||
}//namespace glm
|
Reference in New Issue
Block a user