From 1aaf0525ea29cf37126e65885880dac98fdf128f Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 25 May 2011 09:07:49 +0100 Subject: [PATCH] Updated quaternion test files --- test/gtc/gtc_quaternion.cpp | 2 +- test/gtx/CMakeLists.txt | 1 + test/gtx/gtx_quaternion.cpp | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 test/gtx/gtx_quaternion.cpp diff --git a/test/gtc/gtc_quaternion.cpp b/test/gtc/gtc_quaternion.cpp index 72bf13a4..7ba8ed88 100644 --- a/test/gtc/gtc_quaternion.cpp +++ b/test/gtc/gtc_quaternion.cpp @@ -2,7 +2,7 @@ // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) /////////////////////////////////////////////////////////////////////////////////////////////////// // Created : 2010-09-16 -// Updated : 2010-05-07 +// Updated : 2011-05-25 // Licence : This source is under MIT licence // File : test/gtc/quaternion.cpp /////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/test/gtx/CMakeLists.txt b/test/gtx/CMakeLists.txt index fca74f16..48258987 100644 --- a/test/gtx/CMakeLists.txt +++ b/test/gtx/CMakeLists.txt @@ -1,5 +1,6 @@ glmCreateTestGTC(gtx_bit) glmCreateTestGTC(gtx_noise) +glmCreateTestGTC(gtx_quaternion) glmCreateTestGTC(gtx_rotate_vector) glmCreateTestGTC(gtx_simd_vec4) glmCreateTestGTC(gtx_simd_mat4) diff --git a/test/gtx/gtx_quaternion.cpp b/test/gtx/gtx_quaternion.cpp new file mode 100644 index 00000000..72bf13a4 --- /dev/null +++ b/test/gtx/gtx_quaternion.cpp @@ -0,0 +1,18 @@ +/////////////////////////////////////////////////////////////////////////////////////////////////// +// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net) +/////////////////////////////////////////////////////////////////////////////////////////////////// +// Created : 2010-09-16 +// Updated : 2010-05-07 +// Licence : This source is under MIT licence +// File : test/gtc/quaternion.cpp +/////////////////////////////////////////////////////////////////////////////////////////////////// + +#include +#include + +int main() +{ + int Error = 0; + + return Error; +}