From 268ed351efcd6c3624fdbfd79e2ca86c60c4407d Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 17:57:38 +0100 Subject: [PATCH 01/12] Fixed bitReverse function --- glm/core/func_integer.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/core/func_integer.inl b/glm/core/func_integer.inl index 193fa800..73eceace 100644 --- a/glm/core/func_integer.inl +++ b/glm/core/func_integer.inl @@ -395,7 +395,7 @@ namespace glm genIUType Out = 0; std::size_t BitSize = sizeof(genIUType) * 8; for(std::size_t i = 0; i < BitSize; ++i) - if(In & (genIUType(1) << i)) + if(Value & (genIUType(1) << i)) Out |= genIUType(1) << (BitSize - 1 - i); return Out; } From 47c9476452825c357d0055fe603138fd0545628b Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 18:12:03 +0100 Subject: [PATCH 02/12] Added matrix_access test --- test/gtc/gtc_matrix_access.cpp | 62 ++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 6 deletions(-) diff --git a/test/gtc/gtc_matrix_access.cpp b/test/gtc/gtc_matrix_access.cpp index 0b9bc908..ab726a3c 100644 --- a/test/gtc/gtc_matrix_access.cpp +++ b/test/gtc/gtc_matrix_access.cpp @@ -2,18 +2,68 @@ // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) /////////////////////////////////////////////////////////////////////////////////////////////////// // Created : 2010-09-16 -// Updated : 2010-09-16 +// Updated : 2011-05-07 // Licence : This source is under MIT licence -// File : test/gtc/matrix_transform.cpp +// File : test/gtc/matrix_access.cpp /////////////////////////////////////////////////////////////////////////////////////////////////// -#define GLM_MESSAGES #include -#include +#include + +int test_mat4x4_row_get() +{ + int Error = 0; + + glm::imat4 m(1); + + glm::ivec4 A = glm::row(m, 0); + Error += A == glm::ivec4(1, 0, 0, 0) ? 0 : 1; + glm::ivec4 B = glm::row(m, 0); + Error += B == glm::ivec4(0, 1, 0, 0) ? 0 : 1; + glm::ivec4 C = glm::row(m, 0); + Error += C == glm::ivec4(0, 0, 1, 0) ? 0 : 1; + glm::ivec4 D = glm::row(m, 0); + Error += D == glm::ivec4(0, 0, 0, 1) ? 0 : 1; + + return Error; +} + +int test_mat4x4_col_get() +{ + int Error = 0; + + glm::imat4 m(1); + + glm::ivec4 A = glm::column(m, 0); + Error += A == glm::ivec4(1, 0, 0, 0) ? 0 : 1; + glm::ivec4 B = glm::column(m, 0); + Error += B == glm::ivec4(0, 1, 0, 0) ? 0 : 1; + glm::ivec4 C = glm::column(m, 0); + Error += C == glm::ivec4(0, 0, 1, 0) ? 0 : 1; + glm::ivec4 D = glm::column(m, 0); + Error += D == glm::ivec4(0, 0, 0, 1) ? 0 : 1; + + return Error; +} + +int test_mat4x4_row_set() +{ + +} + +int test_mat4x4_col_set() +{ + +} int main() { - int Failed = 0; + int Error = 0; - return Failed; + Error += test_mat4x4_row_get(); + Error += test_mat4x4_col_set(); + Error += test_mat4x4_row_set(); + Error += test_mat4x4_col_set(); + + return Error; } From fee7daf6ef571aa46b25584754e77ea5a579be2c Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 21:38:41 +0100 Subject: [PATCH 03/12] Added matric access tests --- test/gtc/gtc_matrix_access.cpp | 36 +++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/test/gtc/gtc_matrix_access.cpp b/test/gtc/gtc_matrix_access.cpp index ab726a3c..74a68670 100644 --- a/test/gtc/gtc_matrix_access.cpp +++ b/test/gtc/gtc_matrix_access.cpp @@ -14,16 +14,16 @@ int test_mat4x4_row_get() { int Error = 0; - glm::imat4 m(1); + glm::mat4 m(1); - glm::ivec4 A = glm::row(m, 0); - Error += A == glm::ivec4(1, 0, 0, 0) ? 0 : 1; - glm::ivec4 B = glm::row(m, 0); - Error += B == glm::ivec4(0, 1, 0, 0) ? 0 : 1; - glm::ivec4 C = glm::row(m, 0); - Error += C == glm::ivec4(0, 0, 1, 0) ? 0 : 1; - glm::ivec4 D = glm::row(m, 0); - Error += D == glm::ivec4(0, 0, 0, 1) ? 0 : 1; + glm::vec4 A = glm::row(m, 0); + Error += A == glm::vec4(1, 0, 0, 0) ? 0 : 1; + glm::vec4 B = glm::row(m, 0); + Error += B == glm::vec4(0, 1, 0, 0) ? 0 : 1; + glm::vec4 C = glm::row(m, 0); + Error += C == glm::vec4(0, 0, 1, 0) ? 0 : 1; + glm::vec4 D = glm::row(m, 0); + Error += D == glm::vec4(0, 0, 0, 1) ? 0 : 1; return Error; } @@ -32,16 +32,16 @@ int test_mat4x4_col_get() { int Error = 0; - glm::imat4 m(1); + glm::mat4 m(1); - glm::ivec4 A = glm::column(m, 0); - Error += A == glm::ivec4(1, 0, 0, 0) ? 0 : 1; - glm::ivec4 B = glm::column(m, 0); - Error += B == glm::ivec4(0, 1, 0, 0) ? 0 : 1; - glm::ivec4 C = glm::column(m, 0); - Error += C == glm::ivec4(0, 0, 1, 0) ? 0 : 1; - glm::ivec4 D = glm::column(m, 0); - Error += D == glm::ivec4(0, 0, 0, 1) ? 0 : 1; + glm::vec4 A = glm::column(m, 0); + Error += A == glm::vec4(1, 0, 0, 0) ? 0 : 1; + glm::vec4 B = glm::column(m, 0); + Error += B == glm::vec4(0, 1, 0, 0) ? 0 : 1; + glm::vec4 C = glm::column(m, 0); + Error += C == glm::vec4(0, 0, 1, 0) ? 0 : 1; + glm::vec4 D = glm::column(m, 0); + Error += D == glm::vec4(0, 0, 0, 1) ? 0 : 1; return Error; } From d49148564a462d3dd78a81f0079b850a95ec6b52 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 23:36:03 +0100 Subject: [PATCH 04/12] Fixed cast warninf --- glm/gtx/ulp.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/ulp.inl b/glm/gtx/ulp.inl index 872b858d..488b9c26 100644 --- a/glm/gtx/ulp.inl +++ b/glm/gtx/ulp.inl @@ -261,7 +261,7 @@ namespace ulp template GLM_FUNC_QUALIFIER uint float_distance(T const & x, T const & y) { - std::size_t ulp = 0; + uint ulp = 0; if(x < y) { From a422706f1edb4dcc98081867ee5ebc6d858916e4 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 23:40:28 +0100 Subject: [PATCH 05/12] Fixed static assert --- glm/core/func_integer.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/core/func_integer.inl b/glm/core/func_integer.inl index 73eceace..0e30aa2a 100644 --- a/glm/core/func_integer.inl +++ b/glm/core/func_integer.inl @@ -390,7 +390,7 @@ namespace glm template GLM_FUNC_QUALIFIER genIUType bitfieldReverse(genIUType const & Value) { - GLM_STATIC_ASSERT(std::numeric_limits::is_integer, "'bitRevert' only accept integer values"); + GLM_STATIC_ASSERT(std::numeric_limits::is_integer, "'bitfieldReverse' only accept integer values"); genIUType Out = 0; std::size_t BitSize = sizeof(genIUType) * 8; From d1571fd15f1ccdc17118e0dee9bf92093fd7dded Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 May 2011 23:41:45 +0100 Subject: [PATCH 06/12] Fixed nextafterf on Visual C++ --- glm/gtx/ulp.inl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/glm/gtx/ulp.inl b/glm/gtx/ulp.inl index 488b9c26..08d886a5 100644 --- a/glm/gtx/ulp.inl +++ b/glm/gtx/ulp.inl @@ -169,11 +169,7 @@ namespace detail }//namespace glm #if(GLM_COMPILER & GLM_COMPILER_VC) -# if(GLM_MODEL == GLM_MODEL_32) -# define GLM_NEXT_AFTER_FLT(x, toward) glm::detail::nextafterf((x), (toward)) -# else -# define GLM_NEXT_AFTER_FLT(x, toward) _nextafterf((x), (toward)) -# endif +# define GLM_NEXT_AFTER_FLT(x, toward) glm::detail::nextafterf((x), (toward)) # define GLM_NEXT_AFTER_DBL(x, toward) _nextafter((x), (toward)) #else # define GLM_NEXT_AFTER_FLT(x, toward) nextafterf((x), (toward)) From 840c3d44f4204f4cb5af285fc0455b2f8853aec0 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 8 May 2011 00:31:34 +0100 Subject: [PATCH 07/12] Added mat4 access tests --- test/gtc/gtc_matrix_access.cpp | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/test/gtc/gtc_matrix_access.cpp b/test/gtc/gtc_matrix_access.cpp index 74a68670..ed49335b 100644 --- a/test/gtc/gtc_matrix_access.cpp +++ b/test/gtc/gtc_matrix_access.cpp @@ -48,12 +48,40 @@ int test_mat4x4_col_get() int test_mat4x4_row_set() { + int Error = 0; + glm::mat4 m(1); + + glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); + glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); + glm::row(m, 2, glm::vec4( 8, 9, 10, 11)); + glm::row(m, 3, glm::vec4(12, 13, 14, 15)); + + Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; + Error += glm::row(m, 0) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + Error += glm::row(m, 0) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; + Error += glm::row(m, 0) == glm::vec4(12, 13, 14, 15) ? 0 : 1; + + return Error; } int test_mat4x4_col_set() { + int Error = 0; + glm::mat4 m(1); + + glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); + glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); + glm::column(m, 2, glm::vec4( 8, 9, 10, 11)); + glm::column(m, 3, glm::vec4(12, 13, 14, 15)); + + Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; + Error += glm::column(m, 0) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + Error += glm::column(m, 0) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; + Error += glm::column(m, 0) == glm::vec4(12, 13, 14, 15) ? 0 : 1; + + return Error; } int main() @@ -61,7 +89,7 @@ int main() int Error = 0; Error += test_mat4x4_row_get(); - Error += test_mat4x4_col_set(); + Error += test_mat4x4_col_get(); Error += test_mat4x4_row_set(); Error += test_mat4x4_col_set(); From 575e57ae9ef3f6abf59cb4798c288e5844175b1d Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 8 May 2011 00:53:04 +0100 Subject: [PATCH 08/12] Completed matrix access tests --- test/gtc/gtc_matrix_access.cpp | 345 ++++++++++++++++++++++++++++++--- 1 file changed, 315 insertions(+), 30 deletions(-) diff --git a/test/gtc/gtc_matrix_access.cpp b/test/gtc/gtc_matrix_access.cpp index ed49335b..4f911d4b 100644 --- a/test/gtc/gtc_matrix_access.cpp +++ b/test/gtc/gtc_matrix_access.cpp @@ -10,40 +10,272 @@ #include #include -int test_mat4x4_row_get() +int test_mat2x2_row_set() { int Error = 0; - glm::mat4 m(1); + glm::mat2x2 m(1); - glm::vec4 A = glm::row(m, 0); - Error += A == glm::vec4(1, 0, 0, 0) ? 0 : 1; - glm::vec4 B = glm::row(m, 0); - Error += B == glm::vec4(0, 1, 0, 0) ? 0 : 1; - glm::vec4 C = glm::row(m, 0); - Error += C == glm::vec4(0, 0, 1, 0) ? 0 : 1; - glm::vec4 D = glm::row(m, 0); - Error += D == glm::vec4(0, 0, 0, 1) ? 0 : 1; + glm::row(m, 0, glm::vec2( 0, 1)); + glm::row(m, 1, glm::vec2( 4, 5)); + + Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; return Error; } -int test_mat4x4_col_get() +int test_mat2x2_col_set() { int Error = 0; - glm::mat4 m(1); + glm::mat2x2 m(1); - glm::vec4 A = glm::column(m, 0); - Error += A == glm::vec4(1, 0, 0, 0) ? 0 : 1; - glm::vec4 B = glm::column(m, 0); - Error += B == glm::vec4(0, 1, 0, 0) ? 0 : 1; - glm::vec4 C = glm::column(m, 0); - Error += C == glm::vec4(0, 0, 1, 0) ? 0 : 1; - glm::vec4 D = glm::column(m, 0); - Error += D == glm::vec4(0, 0, 0, 1) ? 0 : 1; + glm::column(m, 0, glm::vec2( 0, 1)); + glm::column(m, 1, glm::vec2( 4, 5)); + + Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1; + + return Error; +} + +int test_mat2x3_row_set() +{ + int Error = 0; - return Error; + glm::mat2x3 m(1); + + glm::row(m, 0, glm::vec2( 0, 1)); + glm::row(m, 1, glm::vec2( 4, 5)); + glm::row(m, 2, glm::vec2( 8, 9)); + + Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec2( 8, 9) ? 0 : 1; + + return Error; +} + +int test_mat2x3_col_set() +{ + int Error = 0; + + glm::mat2x3 m(1); + + glm::column(m, 0, glm::vec3( 0, 1, 2)); + glm::column(m, 1, glm::vec3( 4, 5, 6)); + + Error += glm::column(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; + + return Error; +} + +int test_mat2x4_row_set() +{ + int Error = 0; + + glm::mat2x4 m(1); + + glm::row(m, 0, glm::vec2( 0, 1)); + glm::row(m, 1, glm::vec2( 4, 5)); + glm::row(m, 2, glm::vec2( 8, 9)); + glm::row(m, 3, glm::vec2(12, 13)); + + Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec2( 8, 9) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec2(12, 13) ? 0 : 1; + + return Error; +} + +int test_mat2x4_col_set() +{ + int Error = 0; + + glm::mat2x4 m(1); + + glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); + glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); + + Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + + return Error; +} + +int test_mat3x2_row_set() +{ + int Error = 0; + + glm::mat3x2 m(1); + + glm::row(m, 0, glm::vec3( 0, 1, 2)); + glm::row(m, 1, glm::vec3( 4, 5, 6)); + + Error += glm::row(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; + + return Error; +} + +int test_mat3x2_col_set() +{ + int Error = 0; + + glm::mat3x2 m(1); + + glm::column(m, 0, glm::vec2( 0, 1)); + glm::column(m, 1, glm::vec2( 4, 5)); + glm::column(m, 2, glm::vec2( 8, 9)); + + Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1; + Error += glm::column(m, 2) == glm::vec2( 8, 9) ? 0 : 1; + + return Error; +} + +int test_mat3x3_row_set() +{ + int Error = 0; + + glm::mat3x3 m(1); + + glm::row(m, 0, glm::vec3( 0, 1, 2)); + glm::row(m, 1, glm::vec3( 4, 5, 6)); + glm::row(m, 2, glm::vec3( 8, 9, 10)); + + Error += glm::row(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec3( 8, 9, 10) ? 0 : 1; + + return Error; +} + +int test_mat3x3_col_set() +{ + int Error = 0; + + glm::mat3x3 m(1); + + glm::column(m, 0, glm::vec3( 0, 1, 2)); + glm::column(m, 1, glm::vec3( 4, 5, 6)); + glm::column(m, 2, glm::vec3( 8, 9, 10)); + + Error += glm::column(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; + Error += glm::column(m, 2) == glm::vec3( 8, 9, 10) ? 0 : 1; + + return Error; +} + +int test_mat3x4_row_set() +{ + int Error = 0; + + glm::mat3x4 m(1); + + glm::row(m, 0, glm::vec3( 0, 1, 2)); + glm::row(m, 1, glm::vec3( 4, 5, 6)); + glm::row(m, 2, glm::vec3( 8, 9, 10)); + glm::row(m, 3, glm::vec3(12, 13, 14)); + + Error += glm::row(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec3( 8, 9, 10) ? 0 : 1; + Error += glm::row(m, 3) == glm::vec3(12, 13, 14) ? 0 : 1; + + return Error; +} + +int test_mat3x4_col_set() +{ + int Error = 0; + + glm::mat3x4 m(1); + + glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); + glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); + glm::column(m, 2, glm::vec4( 8, 9, 10, 11)); + + Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + Error += glm::column(m, 2) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; + + return Error; +} + +int test_mat4x2_row_set() +{ + int Error = 0; + + glm::mat4x2 m(1); + + glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); + glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); + + Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + + return Error; +} + +int test_mat4x2_col_set() +{ + int Error = 0; + + glm::mat4x2 m(1); + + glm::column(m, 0, glm::vec2( 0, 1)); + glm::column(m, 1, glm::vec2( 4, 5)); + glm::column(m, 2, glm::vec2( 8, 9)); + glm::column(m, 3, glm::vec2(12, 13)); + + Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1; + Error += glm::column(m, 2) == glm::vec2( 8, 9) ? 0 : 1; + Error += glm::column(m, 3) == glm::vec2(12, 13) ? 0 : 1; + + return Error; +} + +int test_mat4x3_row_set() +{ + int Error = 0; + + glm::mat4x3 m(1); + + glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); + glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); + glm::row(m, 2, glm::vec4( 8, 9, 10, 11)); + + Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; + + return Error; +} + +int test_mat4x3_col_set() +{ + int Error = 0; + + glm::mat4x3 m(1); + + glm::column(m, 0, glm::vec3( 0, 1, 2)); + glm::column(m, 1, glm::vec3( 4, 5, 6)); + glm::column(m, 2, glm::vec3( 8, 9, 10)); + glm::column(m, 3, glm::vec3(12, 13, 14)); + + Error += glm::column(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; + Error += glm::column(m, 2) == glm::vec3( 8, 9, 10) ? 0 : 1; + Error += glm::column(m, 3) == glm::vec3(12, 13, 14) ? 0 : 1; + + return Error; } int test_mat4x4_row_set() @@ -58,9 +290,9 @@ int test_mat4x4_row_set() glm::row(m, 3, glm::vec4(12, 13, 14, 15)); Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; - Error += glm::row(m, 0) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; - Error += glm::row(m, 0) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; - Error += glm::row(m, 0) == glm::vec4(12, 13, 14, 15) ? 0 : 1; + Error += glm::row(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + Error += glm::row(m, 2) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; + Error += glm::row(m, 3) == glm::vec4(12, 13, 14, 15) ? 0 : 1; return Error; } @@ -77,21 +309,74 @@ int test_mat4x4_col_set() glm::column(m, 3, glm::vec4(12, 13, 14, 15)); Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; - Error += glm::column(m, 0) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; - Error += glm::column(m, 0) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; - Error += glm::column(m, 0) == glm::vec4(12, 13, 14, 15) ? 0 : 1; + Error += glm::column(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; + Error += glm::column(m, 2) == glm::vec4( 8, 9, 10, 11) ? 0 : 1; + Error += glm::column(m, 3) == glm::vec4(12, 13, 14, 15) ? 0 : 1; return Error; } +int test_mat4x4_row_get() +{ + int Error = 0; + + glm::mat4 m(1); + + glm::vec4 A = glm::row(m, 0); + Error += A == glm::vec4(1, 0, 0, 0) ? 0 : 1; + glm::vec4 B = glm::row(m, 1); + Error += B == glm::vec4(0, 1, 0, 0) ? 0 : 1; + glm::vec4 C = glm::row(m, 2); + Error += C == glm::vec4(0, 0, 1, 0) ? 0 : 1; + glm::vec4 D = glm::row(m, 3); + Error += D == glm::vec4(0, 0, 0, 1) ? 0 : 1; + + return Error; +} + +int test_mat4x4_col_get() +{ + int Error = 0; + + glm::mat4 m(1); + + glm::vec4 A = glm::column(m, 0); + Error += A == glm::vec4(1, 0, 0, 0) ? 0 : 1; + glm::vec4 B = glm::column(m, 1); + Error += B == glm::vec4(0, 1, 0, 0) ? 0 : 1; + glm::vec4 C = glm::column(m, 2); + Error += C == glm::vec4(0, 0, 1, 0) ? 0 : 1; + glm::vec4 D = glm::column(m, 3); + Error += D == glm::vec4(0, 0, 0, 1) ? 0 : 1; + + return Error; +} + int main() { int Error = 0; + Error += test_mat2x2_row_set(); + Error += test_mat2x2_col_set(); + Error += test_mat2x3_row_set(); + Error += test_mat2x3_col_set(); + Error += test_mat2x4_row_set(); + Error += test_mat2x4_col_set(); + Error += test_mat3x2_row_set(); + Error += test_mat3x2_col_set(); + Error += test_mat3x3_row_set(); + Error += test_mat3x3_col_set(); + Error += test_mat3x4_row_set(); + Error += test_mat3x4_col_set(); + Error += test_mat4x2_row_set(); + Error += test_mat4x2_col_set(); + Error += test_mat4x3_row_set(); + Error += test_mat4x3_col_set(); + Error += test_mat4x4_row_set(); + Error += test_mat4x4_col_set(); + Error += test_mat4x4_row_get(); Error += test_mat4x4_col_get(); - Error += test_mat4x4_row_set(); - Error += test_mat4x4_col_set(); - + return Error; } From d210238609f0cbef5ce32a7a030af3bc03b410e9 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 8 May 2011 01:08:16 +0100 Subject: [PATCH 09/12] Fixed tests --- test/gtc/gtc_matrix_access.cpp | 110 ++++++++++++++++---------------- test/gtc/gtc_matrix_inverse.cpp | 5 +- test/gtc/gtc_quaternion.cpp | 9 ++- 3 files changed, 61 insertions(+), 63 deletions(-) diff --git a/test/gtc/gtc_matrix_access.cpp b/test/gtc/gtc_matrix_access.cpp index 4f911d4b..b853b506 100644 --- a/test/gtc/gtc_matrix_access.cpp +++ b/test/gtc/gtc_matrix_access.cpp @@ -16,8 +16,8 @@ int test_mat2x2_row_set() glm::mat2x2 m(1); - glm::row(m, 0, glm::vec2( 0, 1)); - glm::row(m, 1, glm::vec2( 4, 5)); + m = glm::row(m, 0, glm::vec2( 0, 1)); + m = glm::row(m, 1, glm::vec2( 4, 5)); Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; @@ -31,8 +31,8 @@ int test_mat2x2_col_set() glm::mat2x2 m(1); - glm::column(m, 0, glm::vec2( 0, 1)); - glm::column(m, 1, glm::vec2( 4, 5)); + m = glm::column(m, 0, glm::vec2( 0, 1)); + m = glm::column(m, 1, glm::vec2( 4, 5)); Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1; @@ -46,9 +46,9 @@ int test_mat2x3_row_set() glm::mat2x3 m(1); - glm::row(m, 0, glm::vec2( 0, 1)); - glm::row(m, 1, glm::vec2( 4, 5)); - glm::row(m, 2, glm::vec2( 8, 9)); + m = glm::row(m, 0, glm::vec2( 0, 1)); + m = glm::row(m, 1, glm::vec2( 4, 5)); + m = glm::row(m, 2, glm::vec2( 8, 9)); Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; @@ -63,8 +63,8 @@ int test_mat2x3_col_set() glm::mat2x3 m(1); - glm::column(m, 0, glm::vec3( 0, 1, 2)); - glm::column(m, 1, glm::vec3( 4, 5, 6)); + m = glm::column(m, 0, glm::vec3( 0, 1, 2)); + m = glm::column(m, 1, glm::vec3( 4, 5, 6)); Error += glm::column(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; Error += glm::column(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; @@ -78,15 +78,15 @@ int test_mat2x4_row_set() glm::mat2x4 m(1); - glm::row(m, 0, glm::vec2( 0, 1)); - glm::row(m, 1, glm::vec2( 4, 5)); - glm::row(m, 2, glm::vec2( 8, 9)); - glm::row(m, 3, glm::vec2(12, 13)); + m = glm::row(m, 0, glm::vec2( 0, 1)); + m = glm::row(m, 1, glm::vec2( 4, 5)); + m = glm::row(m, 2, glm::vec2( 8, 9)); + m = glm::row(m, 3, glm::vec2(12, 13)); Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; Error += glm::row(m, 2) == glm::vec2( 8, 9) ? 0 : 1; - Error += glm::row(m, 2) == glm::vec2(12, 13) ? 0 : 1; + Error += glm::row(m, 3) == glm::vec2(12, 13) ? 0 : 1; return Error; } @@ -97,8 +97,8 @@ int test_mat2x4_col_set() glm::mat2x4 m(1); - glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); - glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); + m = glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); + m = glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; Error += glm::column(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; @@ -112,8 +112,8 @@ int test_mat3x2_row_set() glm::mat3x2 m(1); - glm::row(m, 0, glm::vec3( 0, 1, 2)); - glm::row(m, 1, glm::vec3( 4, 5, 6)); + m = glm::row(m, 0, glm::vec3( 0, 1, 2)); + m = glm::row(m, 1, glm::vec3( 4, 5, 6)); Error += glm::row(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; Error += glm::row(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; @@ -127,9 +127,9 @@ int test_mat3x2_col_set() glm::mat3x2 m(1); - glm::column(m, 0, glm::vec2( 0, 1)); - glm::column(m, 1, glm::vec2( 4, 5)); - glm::column(m, 2, glm::vec2( 8, 9)); + m = glm::column(m, 0, glm::vec2( 0, 1)); + m = glm::column(m, 1, glm::vec2( 4, 5)); + m = glm::column(m, 2, glm::vec2( 8, 9)); Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1; @@ -144,9 +144,9 @@ int test_mat3x3_row_set() glm::mat3x3 m(1); - glm::row(m, 0, glm::vec3( 0, 1, 2)); - glm::row(m, 1, glm::vec3( 4, 5, 6)); - glm::row(m, 2, glm::vec3( 8, 9, 10)); + m = glm::row(m, 0, glm::vec3( 0, 1, 2)); + m = glm::row(m, 1, glm::vec3( 4, 5, 6)); + m = glm::row(m, 2, glm::vec3( 8, 9, 10)); Error += glm::row(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; Error += glm::row(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; @@ -161,9 +161,9 @@ int test_mat3x3_col_set() glm::mat3x3 m(1); - glm::column(m, 0, glm::vec3( 0, 1, 2)); - glm::column(m, 1, glm::vec3( 4, 5, 6)); - glm::column(m, 2, glm::vec3( 8, 9, 10)); + m = glm::column(m, 0, glm::vec3( 0, 1, 2)); + m = glm::column(m, 1, glm::vec3( 4, 5, 6)); + m = glm::column(m, 2, glm::vec3( 8, 9, 10)); Error += glm::column(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; Error += glm::column(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; @@ -178,10 +178,10 @@ int test_mat3x4_row_set() glm::mat3x4 m(1); - glm::row(m, 0, glm::vec3( 0, 1, 2)); - glm::row(m, 1, glm::vec3( 4, 5, 6)); - glm::row(m, 2, glm::vec3( 8, 9, 10)); - glm::row(m, 3, glm::vec3(12, 13, 14)); + m = glm::row(m, 0, glm::vec3( 0, 1, 2)); + m = glm::row(m, 1, glm::vec3( 4, 5, 6)); + m = glm::row(m, 2, glm::vec3( 8, 9, 10)); + m = glm::row(m, 3, glm::vec3(12, 13, 14)); Error += glm::row(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; Error += glm::row(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; @@ -197,9 +197,9 @@ int test_mat3x4_col_set() glm::mat3x4 m(1); - glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); - glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); - glm::column(m, 2, glm::vec4( 8, 9, 10, 11)); + m = glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); + m = glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); + m = glm::column(m, 2, glm::vec4( 8, 9, 10, 11)); Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; Error += glm::column(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; @@ -214,8 +214,8 @@ int test_mat4x2_row_set() glm::mat4x2 m(1); - glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); - glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); + m = glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); + m = glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; Error += glm::row(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; @@ -229,10 +229,10 @@ int test_mat4x2_col_set() glm::mat4x2 m(1); - glm::column(m, 0, glm::vec2( 0, 1)); - glm::column(m, 1, glm::vec2( 4, 5)); - glm::column(m, 2, glm::vec2( 8, 9)); - glm::column(m, 3, glm::vec2(12, 13)); + m = glm::column(m, 0, glm::vec2( 0, 1)); + m = glm::column(m, 1, glm::vec2( 4, 5)); + m = glm::column(m, 2, glm::vec2( 8, 9)); + m = glm::column(m, 3, glm::vec2(12, 13)); Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1; @@ -248,9 +248,9 @@ int test_mat4x3_row_set() glm::mat4x3 m(1); - glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); - glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); - glm::row(m, 2, glm::vec4( 8, 9, 10, 11)); + m = glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); + m = glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); + m = glm::row(m, 2, glm::vec4( 8, 9, 10, 11)); Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; Error += glm::row(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; @@ -265,10 +265,10 @@ int test_mat4x3_col_set() glm::mat4x3 m(1); - glm::column(m, 0, glm::vec3( 0, 1, 2)); - glm::column(m, 1, glm::vec3( 4, 5, 6)); - glm::column(m, 2, glm::vec3( 8, 9, 10)); - glm::column(m, 3, glm::vec3(12, 13, 14)); + m = glm::column(m, 0, glm::vec3( 0, 1, 2)); + m = glm::column(m, 1, glm::vec3( 4, 5, 6)); + m = glm::column(m, 2, glm::vec3( 8, 9, 10)); + m = glm::column(m, 3, glm::vec3(12, 13, 14)); Error += glm::column(m, 0) == glm::vec3( 0, 1, 2) ? 0 : 1; Error += glm::column(m, 1) == glm::vec3( 4, 5, 6) ? 0 : 1; @@ -284,10 +284,10 @@ int test_mat4x4_row_set() glm::mat4 m(1); - glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); - glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); - glm::row(m, 2, glm::vec4( 8, 9, 10, 11)); - glm::row(m, 3, glm::vec4(12, 13, 14, 15)); + m = glm::row(m, 0, glm::vec4( 0, 1, 2, 3)); + m = glm::row(m, 1, glm::vec4( 4, 5, 6, 7)); + m = glm::row(m, 2, glm::vec4( 8, 9, 10, 11)); + m = glm::row(m, 3, glm::vec4(12, 13, 14, 15)); Error += glm::row(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; Error += glm::row(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; @@ -303,10 +303,10 @@ int test_mat4x4_col_set() glm::mat4 m(1); - glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); - glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); - glm::column(m, 2, glm::vec4( 8, 9, 10, 11)); - glm::column(m, 3, glm::vec4(12, 13, 14, 15)); + m = glm::column(m, 0, glm::vec4( 0, 1, 2, 3)); + m = glm::column(m, 1, glm::vec4( 4, 5, 6, 7)); + m = glm::column(m, 2, glm::vec4( 8, 9, 10, 11)); + m = glm::column(m, 3, glm::vec4(12, 13, 14, 15)); Error += glm::column(m, 0) == glm::vec4( 0, 1, 2, 3) ? 0 : 1; Error += glm::column(m, 1) == glm::vec4( 4, 5, 6, 7) ? 0 : 1; diff --git a/test/gtc/gtc_matrix_inverse.cpp b/test/gtc/gtc_matrix_inverse.cpp index 0b9bc908..324900f4 100644 --- a/test/gtc/gtc_matrix_inverse.cpp +++ b/test/gtc/gtc_matrix_inverse.cpp @@ -4,12 +4,11 @@ // Created : 2010-09-16 // Updated : 2010-09-16 // Licence : This source is under MIT licence -// File : test/gtc/matrix_transform.cpp +// File : test/gtc/matrix_inverse.cpp /////////////////////////////////////////////////////////////////////////////////////////////////// -#define GLM_MESSAGES #include -#include +#include int main() { diff --git a/test/gtc/gtc_quaternion.cpp b/test/gtc/gtc_quaternion.cpp index c018ae68..72bf13a4 100644 --- a/test/gtc/gtc_quaternion.cpp +++ b/test/gtc/gtc_quaternion.cpp @@ -2,18 +2,17 @@ // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) /////////////////////////////////////////////////////////////////////////////////////////////////// // Created : 2010-09-16 -// Updated : 2010-09-16 +// Updated : 2010-05-07 // Licence : This source is under MIT licence -// File : test/gtc/matrix_transform.cpp +// File : test/gtc/quaternion.cpp /////////////////////////////////////////////////////////////////////////////////////////////////// -#define GLM_MESSAGES #include -#include +#include int main() { - int Error = -1; + int Error = 0; return Error; } From 43de372d730c41e25b98256bc6e9300868fb93d3 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 8 May 2011 01:26:38 +0100 Subject: [PATCH 10/12] Completed type precision tests --- test/gtc/gtc_type_precision.cpp | 299 +++++++++++++++----------------- 1 file changed, 139 insertions(+), 160 deletions(-) diff --git a/test/gtc/gtc_type_precision.cpp b/test/gtc/gtc_type_precision.cpp index bca3b104..af82f94e 100644 --- a/test/gtc/gtc_type_precision.cpp +++ b/test/gtc/gtc_type_precision.cpp @@ -2,189 +2,168 @@ // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) /////////////////////////////////////////////////////////////////////////////////////////////////// // Created : 2010-09-16 -// Updated : 2011-05-06 +// Updated : 2011-05-08 // Licence : This source is under MIT licence // File : test/gtc/type_precision.cpp /////////////////////////////////////////////////////////////////////////////////////////////////// -#define GLM_MESSAGES #include #include -/* -//typedef i8 i8vec1; //!< \brief 8bit signed integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 i8vec2; //!< \brief 8bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 i8vec3; //!< \brief 8bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 i8vec4; //!< \brief 8bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef i16 i16vec1; //!< \brief 16bit signed integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 i16vec2; //!< \brief 16bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 i16vec3; //!< \brief 16bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 i16vec4; //!< \brief 16bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef i32 i32vec1; //!< \brief 32bit signed integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 i32vec2; //!< \brief 32bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 i32vec3; //!< \brief 32bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 i32vec4; //!< \brief 32bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef i64 i64vec1; //!< \brief 32bit signed integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 i64vec2; //!< \brief 64bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 i64vec3; //!< \brief 64bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 i64vec4; //!< \brief 64bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension) - -///////////////////////////// -// Unsigned int vector types - - -//typedef u8 u8vec1; //!< \brief 8bit unsigned integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 u8vec2; //!< \brief 8bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 u8vec3; //!< \brief 8bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 u8vec4; //!< \brief 8bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef u16 u16vec1; //!< \brief 16bit unsigned integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 u16vec2; //!< \brief 16bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 u16vec3; //!< \brief 16bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 u16vec4; //!< \brief 16bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef u32 u32vec1; //!< \brief 32bit unsigned integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 u32vec2; //!< \brief 32bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 u32vec3; //!< \brief 32bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 u32vec4; //!< \brief 32bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef u64 u64vec1; //!< \brief 64bit unsigned integer scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 u64vec2; //!< \brief 64bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 u64vec3; //!< \brief 64bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 u64vec4; //!< \brief 64bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef f16 f16vec1; //!< \brief Half-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 f16vec2; //!< \brief Half-precision floating-point vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 f16vec3; //!< \brief Half-precision floating-point vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 f16vec4; //!< \brief Half-precision floating-point vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef f32 f32vec1; //!< \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 f32vec2; //!< \brief Single-precision floating-point vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 f32vec3; //!< \brief Single-precision floating-point vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 f32vec4; //!< \brief Single-precision floating-point vector of 4 components. (from GLM_GTC_type_precision extension) - -//typedef f64 f64vec1; //!< \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tvec2 f64vec2; //!< \brief Double-precision floating-point vector of 2 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec3 f64vec3; //!< \brief Double-precision floating-point vector of 3 components. (from GLM_GTC_type_precision extension) -typedef detail::tvec4 f64vec4; //!< \brief Double-precision floating-point vector of 4 components. (from GLM_GTC_type_precision extension) - -////////////////////// -// Float matrix types - -//typedef f32 fmat1; //!< \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 fmat2; //!< \brief Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 fmat3; //!< \brief Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 fmat4; //!< \brief Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f32 fmat1x1; //!< \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 fmat2x2; //!< \brief Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x3 fmat2x3; //!< \brief Single-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x4 fmat2x4; //!< \brief Single-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x2 fmat3x2; //!< \brief Single-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 fmat3x3; //!< \brief Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x4 fmat3x4; //!< \brief Single-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x2 fmat4x2; //!< \brief Single-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x3 fmat4x3; //!< \brief Single-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 fmat4x4; //!< \brief Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f16 f16mat1; //!< \brief Half-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 f16mat2; //!< \brief Half-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 f16mat3; //!< \brief Half-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 f16mat4; //!< \brief Half-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f16 f16mat1x1; //!< \brief Half-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 f16mat2x2; //!< \brief Half-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x3 f16mat2x3; //!< \brief Half-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x4 f16mat2x4; //!< \brief Half-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x2 f16mat3x2; //!< \brief Half-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 f16mat3x3; //!< \brief Half-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x4 f16mat3x4; //!< \brief Half-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x2 f16mat4x2; //!< \brief Half-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x3 f16mat4x3; //!< \brief Half-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 f16mat4x4; //!< \brief Half-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f32 f32mat1; //!< \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 f32mat2; //!< \brief Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 f32mat3; //!< \brief Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 f32mat4; //!< \brief Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f32 f32mat1x1; //!< \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 f32mat2x2; //!< \brief Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x3 f32mat2x3; //!< \brief Single-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x4 f32mat2x4; //!< \brief Single-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x2 f32mat3x2; //!< \brief Single-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 f32mat3x3; //!< \brief Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x4 f32mat3x4; //!< \brief Single-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x2 f32mat4x2; //!< \brief Single-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x3 f32mat4x3; //!< \brief Single-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 f32mat4x4; //!< \brief Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f64 f64mat1; //!< \brief Double-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 f64mat2; //!< \brief Double-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 f64mat3; //!< \brief Double-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 f64mat4; //!< \brief Double-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) - -//typedef f64 f64mat1x1; //!< \brief Double-precision floating-point scalar. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x2 f64mat2x2; //!< \brief Double-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x3 f64mat2x3; //!< \brief Double-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat2x4 f64mat2x4; //!< \brief Double-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x2 f64mat3x2; //!< \brief Double-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x3 f64mat3x3; //!< \brief Double-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat3x4 f64mat3x4; //!< \brief Double-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x2 f64mat4x2; //!< \brief Double-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x3 f64mat4x3; //!< \brief Double-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension) -typedef detail::tmat4x4 f64mat4x4; //!< \brief Double-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension) -*/ static int test_scalar_size() { - return !( - sizeof(glm::int8) == 1 && - sizeof(glm::int16) == 2 && - sizeof(glm::int32) == 4 && - sizeof(glm::int64) == 8 && - sizeof(glm::uint8) == 1 && - sizeof(glm::uint16) == 2 && - sizeof(glm::uint32) == 4 && - sizeof(glm::uint64) == 8 && - sizeof(glm::float16) == 2 && - sizeof(glm::float32) == 4 && - sizeof(glm::float64) == 8); + int Error = 0; + Error += sizeof(glm::int8) != 1; + Error += sizeof(glm::int16) != 2; + Error += sizeof(glm::int32) != 4; + Error += sizeof(glm::int64) != 8; + Error += sizeof(glm::uint8) != 1; + Error += sizeof(glm::uint16) != 2; + Error += sizeof(glm::uint32) != 4; + Error += sizeof(glm::uint64) != 8; + Error += sizeof(glm::float16) != 2; + Error += sizeof(glm::float32) != 4; + Error += sizeof(glm::float64) != 8; + return Error; +} + +static int test_fvec_size() +{ + int Error = 0; + Error += sizeof(glm::f16vec2) != 4; + Error += sizeof(glm::f16vec3) != 6; + Error += sizeof(glm::f16vec4) != 8; + Error += sizeof(glm::f32vec2) != 8; + Error += sizeof(glm::f32vec3) != 12; + Error += sizeof(glm::f32vec4) != 16; + Error += sizeof(glm::f64vec2) != 16; + Error += sizeof(glm::f64vec3) != 24; + Error += sizeof(glm::f64vec4) != 32; + return Error; } static int test_ivec_size() { - return !( - sizeof(glm::i8vec2) == 2 && - sizeof(glm::i8vec3) == 3 && - sizeof(glm::i8vec4) == 4 && - sizeof(glm::i16vec2) == 4 && - sizeof(glm::i16vec3) == 6 && - sizeof(glm::i16vec4) == 8 && - sizeof(glm::i32vec2) == 8 && - sizeof(glm::i32vec3) == 12 && - sizeof(glm::i32vec4) == 16 && - sizeof(glm::i64vec2) == 16 && - sizeof(glm::i64vec3) == 24 && - sizeof(glm::i64vec4) == 32); + int Error = 0; + Error += sizeof(glm::i8vec2) != 2; + Error += sizeof(glm::i8vec3) != 3; + Error += sizeof(glm::i8vec4) != 4; + Error += sizeof(glm::i16vec2) != 4; + Error += sizeof(glm::i16vec3) != 6; + Error += sizeof(glm::i16vec4) != 8; + Error += sizeof(glm::i32vec2) != 8; + Error += sizeof(glm::i32vec3) != 12; + Error += sizeof(glm::i32vec4) != 16; + Error += sizeof(glm::i64vec2) != 16; + Error += sizeof(glm::i64vec3) != 24; + Error += sizeof(glm::i64vec4) != 32; + return Error; +} + +static int test_uvec_size() +{ + int Error = 0; + Error += sizeof(glm::u8vec2) != 2; + Error += sizeof(glm::u8vec3) != 3; + Error += sizeof(glm::u8vec4) != 4; + Error += sizeof(glm::u16vec2) != 4; + Error += sizeof(glm::u16vec3) != 6; + Error += sizeof(glm::u16vec4) != 8; + Error += sizeof(glm::u32vec2) != 8; + Error += sizeof(glm::u32vec3) != 12; + Error += sizeof(glm::u32vec4) != 16; + Error += sizeof(glm::u64vec2) != 16; + Error += sizeof(glm::u64vec3) != 24; + Error += sizeof(glm::u64vec4) != 32; + return Error; +} + +static int test_hmat_size() +{ + int Error = 0; + Error += sizeof(glm::f16mat2) != 8; + Error += sizeof(glm::f16mat3) != 18; + Error += sizeof(glm::f16mat4) != 32; + Error += sizeof(glm::f16mat2x2) != 8; + Error += sizeof(glm::f16mat2x3) != 12; + Error += sizeof(glm::f16mat2x4) != 16; + Error += sizeof(glm::f16mat3x2) != 12; + Error += sizeof(glm::f16mat3x3) != 18; + Error += sizeof(glm::f16mat3x4) != 24; + Error += sizeof(glm::f16mat4x2) != 16; + Error += sizeof(glm::f16mat4x3) != 24; + Error += sizeof(glm::f16mat4x4) != 32; + return Error; +} + +static int test_fmat_size() +{ + int Error = 0; + Error += sizeof(glm::fmat2) != 16; + Error += sizeof(glm::fmat3) != 36; + Error += sizeof(glm::fmat4) != 64; + Error += sizeof(glm::fmat2x2) != 16; + Error += sizeof(glm::fmat2x3) != 24; + Error += sizeof(glm::fmat2x4) != 32; + Error += sizeof(glm::fmat3x2) != 24; + Error += sizeof(glm::fmat3x3) != 36; + Error += sizeof(glm::fmat3x4) != 48; + Error += sizeof(glm::fmat4x2) != 32; + Error += sizeof(glm::fmat4x3) != 48; + Error += sizeof(glm::fmat4x4) != 64; + + Error += sizeof(glm::f32mat2) != 16; + Error += sizeof(glm::f32mat3) != 36; + Error += sizeof(glm::f32mat4) != 64; + Error += sizeof(glm::f32mat2x2) != 16; + Error += sizeof(glm::f32mat2x3) != 24; + Error += sizeof(glm::f32mat2x4) != 32; + Error += sizeof(glm::f32mat3x2) != 24; + Error += sizeof(glm::f32mat3x3) != 36; + Error += sizeof(glm::f32mat3x4) != 48; + Error += sizeof(glm::f32mat4x2) != 32; + Error += sizeof(glm::f32mat4x3) != 48; + Error += sizeof(glm::f32mat4x4) != 64; + return Error; +} + +static int test_dmat_size() +{ + int Error = 0; + Error += sizeof(glm::f64mat2) != 32; + Error += sizeof(glm::f64mat3) != 72; + Error += sizeof(glm::f64mat4) != 128; + Error += sizeof(glm::f64mat2x2) != 32; + Error += sizeof(glm::f64mat2x3) != 48; + Error += sizeof(glm::f64mat2x4) != 64; + Error += sizeof(glm::f64mat3x2) != 48; + Error += sizeof(glm::f64mat3x3) != 72; + Error += sizeof(glm::f64mat3x4) != 96; + Error += sizeof(glm::f64mat4x2) != 64; + Error += sizeof(glm::f64mat4x3) != 96; + Error += sizeof(glm::f64mat4x4) != 128; + return Error; } static int test_quat_size() { - return !( - sizeof(glm::f16quat) == 8 && - sizeof(glm::f32quat) == 16 && - sizeof(glm::f64quat) == 32); + int Error = 0; + Error += sizeof(glm::f16quat) != 8; + Error += sizeof(glm::f32quat) != 16; + Error += sizeof(glm::f64quat) != 32; + return Error; } int main() { int Error = 0; Error += test_scalar_size(); - //Error += test_mat_size(); + Error += test_fvec_size(); Error += test_ivec_size(); - Error += test_quat_size(); + Error += test_uvec_size(); + Error += test_hmat_size(); + Error += test_fmat_size(); + Error += test_dmat_size(); + Error += test_quat_size(); return Error; } From ecc167d0f2be10663be85ebbdebff9e5eda4fce8 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 8 May 2011 01:36:13 +0100 Subject: [PATCH 11/12] Added length member function --- glm/core/type_vec1.hpp | 1 + glm/core/type_vec1.inl | 6 ++++++ glm/core/type_vec2.hpp | 1 + glm/core/type_vec2.inl | 6 ++++++ glm/core/type_vec3.hpp | 1 + glm/core/type_vec3.inl | 6 ++++++ glm/core/type_vec4.hpp | 1 + glm/core/type_vec4.inl | 6 ++++++ 8 files changed, 28 insertions(+) diff --git a/glm/core/type_vec1.hpp b/glm/core/type_vec1.hpp index 5dcbca88..ffd8da1c 100644 --- a/glm/core/type_vec1.hpp +++ b/glm/core/type_vec1.hpp @@ -41,6 +41,7 @@ namespace glm typedef T value_type; typedef std::size_t size_type; + GLM_FUNC_DECL size_type length() const; static GLM_FUNC_DECL size_type value_size(); typedef tvec1 type; diff --git a/glm/core/type_vec1.inl b/glm/core/type_vec1.inl index 5fba5b80..df0d1ada 100644 --- a/glm/core/type_vec1.inl +++ b/glm/core/type_vec1.inl @@ -11,6 +11,12 @@ namespace glm { namespace detail { + template + GLM_FUNC_QUALIFIER typename tvec1::size_type tvec1::length() const + { + return 1; + } + template GLM_FUNC_QUALIFIER typename tvec1::size_type tvec1::value_size() { diff --git a/glm/core/type_vec2.hpp b/glm/core/type_vec2.hpp index 47e384de..29d641ce 100644 --- a/glm/core/type_vec2.hpp +++ b/glm/core/type_vec2.hpp @@ -41,6 +41,7 @@ namespace glm typedef T value_type; typedef std::size_t size_type; + GLM_FUNC_DECL size_type length() const; static GLM_FUNC_DECL size_type value_size(); typedef tvec2 type; diff --git a/glm/core/type_vec2.inl b/glm/core/type_vec2.inl index 03e038b9..b9fc67cb 100644 --- a/glm/core/type_vec2.inl +++ b/glm/core/type_vec2.inl @@ -11,6 +11,12 @@ namespace glm { namespace detail { + template + GLM_FUNC_QUALIFIER typename tvec2::size_type tvec2::length() const + { + return 2; + } + template GLM_FUNC_QUALIFIER typename tvec2::size_type tvec2::value_size() { diff --git a/glm/core/type_vec3.hpp b/glm/core/type_vec3.hpp index 7ea1cbfa..1e06a783 100644 --- a/glm/core/type_vec3.hpp +++ b/glm/core/type_vec3.hpp @@ -40,6 +40,7 @@ namespace glm typedef T value_type; typedef std::size_t size_type; + GLM_FUNC_DECL size_type length() const; static GLM_FUNC_DECL size_type value_size(); typedef tvec3 type; diff --git a/glm/core/type_vec3.inl b/glm/core/type_vec3.inl index d9795d6c..f7e9bfb5 100644 --- a/glm/core/type_vec3.inl +++ b/glm/core/type_vec3.inl @@ -11,6 +11,12 @@ namespace glm { namespace detail { + template + GLM_FUNC_QUALIFIER typename tvec3::size_type tvec3::length() const + { + return 3; + } + template GLM_FUNC_QUALIFIER typename tvec3::size_type tvec3::value_size() { diff --git a/glm/core/type_vec4.hpp b/glm/core/type_vec4.hpp index 25135de4..354cd5b7 100644 --- a/glm/core/type_vec4.hpp +++ b/glm/core/type_vec4.hpp @@ -40,6 +40,7 @@ namespace glm typedef T value_type; typedef std::size_t size_type; + GLM_FUNC_DECL size_type length() const; static GLM_FUNC_DECL size_type value_size(); typedef tvec4 type; diff --git a/glm/core/type_vec4.inl b/glm/core/type_vec4.inl index e4c28f16..52e16d8a 100644 --- a/glm/core/type_vec4.inl +++ b/glm/core/type_vec4.inl @@ -11,6 +11,12 @@ namespace glm { namespace detail { + template + GLM_FUNC_QUALIFIER typename tvec4::size_type tvec4::length() const + { + return 4; + } + template GLM_FUNC_QUALIFIER typename tvec4::size_type tvec4::value_size() { From 025d3a04cd0740873eafdfb11867b995443d1b98 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 8 May 2011 01:43:40 +0100 Subject: [PATCH 12/12] Getting ready GLM 0.9.2 release --- readme.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 412e491e..f0c60789 100644 --- a/readme.txt +++ b/readme.txt @@ -11,7 +11,16 @@ GLM is a header only library, there is nothing to build, just include it. #include More informations in GLM manual: -http://glm.g-truc.net/glm-0.9.1.pdf +http://glm.g-truc.net/glm-0.9.2.pdf + +================================================================================ +GLM 0.9.2.0: 2010-05-08 +-------------------------------------------------------------------------------- +- Added CUDA support +- Added CTest test suite +- Added GLM_GTX_ulp +- Added GLM_GTX_matrix_interpolation +- Updated quaternion slerp interpolation ================================================================================ GLM 0.9.1.3: 2010-05-07