Browse Source

Move GTC_type_aligned to GTX extensions

Christophe Riccio 11 years ago
parent
commit
7621a735a3

+ 0 - 0
glm/gtc/type_aligned.hpp → glm/gtx/type_aligned.hpp


+ 0 - 0
glm/gtc/type_aligned.inl → glm/gtx/type_aligned.inl


+ 1 - 1
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

+ 0 - 1
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)

+ 1 - 0
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)

+ 0 - 0
test/gtc/gtc_type_aligned.cpp → test/gtx/gtx_type_aligned.cpp