Browse Source

Updated readme for GLM 0.9.3.4 release

Christophe Riccio 13 years ago
parent
commit
a979cb483e
3 changed files with 5 additions and 5 deletions
  1. 0 2
      glm/core/setup.hpp
  2. 1 2
      glm/core/type_vec3.hpp
  3. 4 1
      readme.txt

+ 0 - 2
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

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

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