From a979cb483eb0624ec86e88f230ee85a70a3dfb54 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 28 Jun 2012 19:15:57 +0100 Subject: [PATCH] Updated readme for GLM 0.9.3.4 release --- glm/core/setup.hpp | 2 -- glm/core/type_vec3.hpp | 3 +-- readme.txt | 5 ++++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/glm/core/setup.hpp b/glm/core/setup.hpp index b6bc7de3..a12adb46 100644 --- a/glm/core/setup.hpp +++ b/glm/core/setup.hpp @@ -430,8 +430,6 @@ # define GLM_LANG GLM_LANG_CXX0X # elif(((GLM_COMPILER & GLM_COMPILER_VC) == GLM_COMPILER_VC) && defined(_MSC_EXTENSIONS)) # define GLM_LANG GLM_LANG_CXXMS -# elif(((GLM_COMPILER & GLM_COMPILER_GCC) == GLM_COMPILER_GCC) && defined(_MSC_EXTENSIONS)) -# define GLM_LANG GLM_LANG_CXXMS # elif(((GLM_COMPILER & GLM_COMPILER_VC) == GLM_COMPILER_VC) && !defined(_MSC_EXTENSIONS)) # if(GLM_COMPILER >= GLM_COMPILER_VC2010) # define GLM_LANG GLM_LANG_CXX0X diff --git a/glm/core/type_vec3.hpp b/glm/core/type_vec3.hpp index 6468922d..3177b342 100644 --- a/glm/core/type_vec3.hpp +++ b/glm/core/type_vec3.hpp @@ -84,13 +84,12 @@ namespace detail union {value_type x, r, s;}; union {value_type y, g, t;}; union {value_type z, b, p;}; -/* + # if(defined(GLM_SWIZZLE)) // Defines all he swizzle operator as functions GLM_SWIZZLE_GEN_REF_FROM_VEC3(T, detail::tvec3, detail::tref2, detail::tref3) GLM_SWIZZLE_GEN_VEC_FROM_VEC3(T, detail::tvec3, detail::tvec2, detail::tvec3, detail::tvec4) # endif//(defined(GLM_SWIZZLE)) -*/ # else //(GLM_COMPONENT == GLM_COMPONENT_ONLY_XYZW) value_type x, y, z; diff --git a/readme.txt b/readme.txt index fd5eacd5..1f1a943c 100644 --- a/readme.txt +++ b/readme.txt @@ -37,9 +37,12 @@ More informations in GLM manual: http://glm.g-truc.net/glm-0.9.3.pdf ================================================================================ -GLM 0.9.3.4: 2012-XX-XX +GLM 0.9.3.4: 2012-06-28 -------------------------------------------------------------------------------- - Added SSE4 and AVX2 detection. +- Removed VIRTREV_xstream and the incompatibility generated with GCC +- Fixed C++11 compiler option for GCC +- Removed MS language extension option for GCC (not fonctionnal) ================================================================================ GLM 0.9.3.3: 2012-05-10