mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Clean up dead files
This commit is contained in:
parent
21d0092f6a
commit
84d5e96144
@ -5,7 +5,6 @@
|
|||||||
#include <glm/gtx/dual_quaternion.hpp>
|
#include <glm/gtx/dual_quaternion.hpp>
|
||||||
#include <glm/gtc/vec1.hpp>
|
#include <glm/gtc/vec1.hpp>
|
||||||
#include <glm/gtc/quaternion.hpp>
|
#include <glm/gtc/quaternion.hpp>
|
||||||
#include <glm/ext/scalar_float_sized.hpp>
|
|
||||||
#include <glm/ext/scalar_int_sized.hpp>
|
#include <glm/ext/scalar_int_sized.hpp>
|
||||||
#include <glm/ext/scalar_uint_sized.hpp>
|
#include <glm/ext/scalar_uint_sized.hpp>
|
||||||
#include <glm/glm.hpp>
|
#include <glm/glm.hpp>
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
#include "./ext/quaternion_relational.hpp"
|
#include "./ext/quaternion_relational.hpp"
|
||||||
|
|
||||||
#include "./ext/scalar_constants.hpp"
|
#include "./ext/scalar_constants.hpp"
|
||||||
#include "./ext/scalar_float_sized.hpp"
|
|
||||||
#include "./ext/scalar_int_sized.hpp"
|
#include "./ext/scalar_int_sized.hpp"
|
||||||
#include "./ext/scalar_relational.hpp"
|
#include "./ext/scalar_relational.hpp"
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
// Dependency:
|
// Dependency:
|
||||||
#include "../gtc/quaternion.hpp"
|
#include "../gtc/quaternion.hpp"
|
||||||
#include "../gtc/vec1.hpp"
|
#include "../gtc/vec1.hpp"
|
||||||
#include "../ext/scalar_float_sized.hpp"
|
|
||||||
#include "../ext/scalar_int_sized.hpp"
|
#include "../ext/scalar_int_sized.hpp"
|
||||||
#include "../ext/scalar_uint_sized.hpp"
|
#include "../ext/scalar_uint_sized.hpp"
|
||||||
#include "../detail/type_vec2.hpp"
|
#include "../detail/type_vec2.hpp"
|
||||||
@ -704,6 +703,14 @@ namespace glm
|
|||||||
//////////////////////
|
//////////////////////
|
||||||
// Float vector types
|
// Float vector types
|
||||||
|
|
||||||
|
/// Single-qualifier floating-point scalar.
|
||||||
|
/// @see gtc_type_precision
|
||||||
|
typedef float float32;
|
||||||
|
|
||||||
|
/// Double-qualifier floating-point scalar.
|
||||||
|
/// @see gtc_type_precision
|
||||||
|
typedef double float64;
|
||||||
|
|
||||||
/// Low 32 bit single-qualifier floating-point scalar.
|
/// Low 32 bit single-qualifier floating-point scalar.
|
||||||
/// @see gtc_type_precision
|
/// @see gtc_type_precision
|
||||||
typedef float32 lowp_float32;
|
typedef float32 lowp_float32;
|
||||||
|
@ -55,9 +55,14 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
|
|||||||
### [GLM 0.9.9.3](https://github.com/g-truc/glm/commits/master) - 2018-XX-XX
|
### [GLM 0.9.9.3](https://github.com/g-truc/glm/commits/master) - 2018-XX-XX
|
||||||
#### Features:
|
#### Features:
|
||||||
- Added equal and notEqual overload with max ULPs parameters for scalar numbers #121
|
- Added equal and notEqual overload with max ULPs parameters for scalar numbers #121
|
||||||
- Added constant time ULP distance between float #121
|
|
||||||
- Added GLM_FORCE_SILENT_WARNINGS to silent GLM warnings when using language extensions but using W4 or Wpedantic warnings #814 #775
|
- Added GLM_FORCE_SILENT_WARNINGS to silent GLM warnings when using language extensions but using W4 or Wpedantic warnings #814 #775
|
||||||
|
|
||||||
|
#### Improvements:
|
||||||
|
- Added constant time ULP distance between float #121
|
||||||
|
|
||||||
|
#### Fixes:
|
||||||
|
- Fixed simplex noise build with double #734
|
||||||
|
|
||||||
### [GLM 0.9.9.2](https://github.com/g-truc/glm/releases/tag/0.9.9.2) - 2018-09-14
|
### [GLM 0.9.9.2](https://github.com/g-truc/glm/releases/tag/0.9.9.2) - 2018-09-14
|
||||||
#### Fixes:
|
#### Fixes:
|
||||||
- Fixed GLM_FORCE_CXX** section in the manual
|
- Fixed GLM_FORCE_CXX** section in the manual
|
||||||
|
@ -9,7 +9,6 @@ glmCreateTestGTC(ext_quaternion_trigonometric)
|
|||||||
glmCreateTestGTC(ext_quaternion_type)
|
glmCreateTestGTC(ext_quaternion_type)
|
||||||
glmCreateTestGTC(ext_scalar_common)
|
glmCreateTestGTC(ext_scalar_common)
|
||||||
glmCreateTestGTC(ext_scalar_constants)
|
glmCreateTestGTC(ext_scalar_constants)
|
||||||
glmCreateTestGTC(ext_scalar_float_sized)
|
|
||||||
glmCreateTestGTC(ext_scalar_int_sized)
|
glmCreateTestGTC(ext_scalar_int_sized)
|
||||||
glmCreateTestGTC(ext_scalar_uint_sized)
|
glmCreateTestGTC(ext_scalar_uint_sized)
|
||||||
glmCreateTestGTC(ext_scalar_relational)
|
glmCreateTestGTC(ext_scalar_relational)
|
||||||
|
Loading…
Reference in New Issue
Block a user