Fixed merge

master
Christophe Riccio ago%!(EXTRA string=14 years)
commit 9e5554514c
  1. 4
      glm/core/setup.hpp
  2. 4
      test/gtc/gtc_type_ptr.cpp

@ -19,6 +19,7 @@
#define GLM_VERSION_PATCH 2 #define GLM_VERSION_PATCH 2
#define GLM_VERSION_REVISION 0 #define GLM_VERSION_REVISION 0
/////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////
// Compiler // Compiler
@ -37,6 +38,7 @@
#define GLM_COMPILER_VC2005 0x01000070 #define GLM_COMPILER_VC2005 0x01000070
#define GLM_COMPILER_VC2008 0x01000080 #define GLM_COMPILER_VC2008 0x01000080
#define GLM_COMPILER_VC2010 0x01000090 #define GLM_COMPILER_VC2010 0x01000090
#define GLM_COMPILER_VC2011 0x010000A0
// GCC defines // GCC defines
#define GLM_COMPILER_GCC 0x02000000 #define GLM_COMPILER_GCC 0x02000000
@ -98,6 +100,8 @@
# define GLM_COMPILER GLM_COMPILER_VC2008 # define GLM_COMPILER GLM_COMPILER_VC2008
# elif _MSC_VER == 1600 # elif _MSC_VER == 1600
# define GLM_COMPILER GLM_COMPILER_VC2010 # define GLM_COMPILER GLM_COMPILER_VC2010
# elif _MSC_VER == 1700
# define GLM_COMPILER GLM_COMPILER_VC2011
# else//_MSC_VER # else//_MSC_VER
# define GLM_COMPILER GLM_COMPILER_VC # define GLM_COMPILER GLM_COMPILER_VC
# endif//_MSC_VER # endif//_MSC_VER

@ -4,12 +4,12 @@
// Created : 2010-09-16 // Created : 2010-09-16
// Updated : 2010-09-16 // Updated : 2010-09-16
// Licence : This source is under MIT licence // Licence : This source is under MIT licence
// File : test/gtc/matrix_transform.cpp // File : test/gtc/type_ptr.cpp
/////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////
#define GLM_MESSAGES #define GLM_MESSAGES
#include <glm/glm.hpp> #include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp>
bool test_make_pointer() bool test_make_pointer()
{ {

Loading…
Cancel
Save