From 7621a735a3f59d70b86aebc247e66540eed8d7c4 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 23 Nov 2014 20:58:09 +0100 Subject: [PATCH] Move GTC_type_aligned to GTX extensions --- glm/{gtc => gtx}/type_aligned.hpp | 0 glm/{gtc => gtx}/type_aligned.inl | 0 readme.txt | 2 +- test/gtc/CMakeLists.txt | 1 - test/gtx/CMakeLists.txt | 1 + test/{gtc/gtc_type_aligned.cpp => gtx/gtx_type_aligned.cpp} | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename glm/{gtc => gtx}/type_aligned.hpp (100%) rename glm/{gtc => gtx}/type_aligned.inl (100%) rename test/{gtc/gtc_type_aligned.cpp => gtx/gtx_type_aligned.cpp} (100%) diff --git a/glm/gtc/type_aligned.hpp b/glm/gtx/type_aligned.hpp similarity index 100% rename from glm/gtc/type_aligned.hpp rename to glm/gtx/type_aligned.hpp diff --git a/glm/gtc/type_aligned.inl b/glm/gtx/type_aligned.inl similarity index 100% rename from glm/gtc/type_aligned.inl rename to glm/gtx/type_aligned.inl diff --git a/readme.txt b/readme.txt index 32c8f410..45e18d41 100644 --- a/readme.txt +++ b/readme.txt @@ -58,7 +58,7 @@ Features: - Added GTC_integer extension, promoted GTX_bit and GTX_integer - Added GTC_round extension, promoted GTX_bit - Added GLM_FORCE_EXPLICIT_CTOR to require explicit type conversions #269 -- Added GTC_type_aligned for aligned vector and matrix types +- Added GTX_type_aligned for aligned vector, matrix and quaternion types Improvements: - Rely on C++11 to implement isinf and isnan diff --git a/test/gtc/CMakeLists.txt b/test/gtc/CMakeLists.txt index 42c2e84d..224b8eb5 100644 --- a/test/gtc/CMakeLists.txt +++ b/test/gtc/CMakeLists.txt @@ -12,7 +12,6 @@ glmCreateTestGTC(gtc_quaternion) glmCreateTestGTC(gtc_random) glmCreateTestGTC(gtc_round) glmCreateTestGTC(gtc_reciprocal) -glmCreateTestGTC(gtc_type_aligned) glmCreateTestGTC(gtc_type_precision) glmCreateTestGTC(gtc_type_ptr) glmCreateTestGTC(gtc_ulp) diff --git a/test/gtx/CMakeLists.txt b/test/gtx/CMakeLists.txt index 1b72c6ff..e5e109c6 100644 --- a/test/gtx/CMakeLists.txt +++ b/test/gtx/CMakeLists.txt @@ -46,5 +46,6 @@ glmCreateTestGTC(gtx_simd_vec4) glmCreateTestGTC(gtx_simd_mat4) glmCreateTestGTC(gtx_spline) glmCreateTestGTC(gtx_string_cast) +glmCreateTestGTC(gtx_type_aligned) glmCreateTestGTC(gtx_vector_angle) glmCreateTestGTC(gtx_vector_query) diff --git a/test/gtc/gtc_type_aligned.cpp b/test/gtx/gtx_type_aligned.cpp similarity index 100% rename from test/gtc/gtc_type_aligned.cpp rename to test/gtx/gtx_type_aligned.cpp