Added WINCE detection #92
This commit is contained in:
parent
5b525ced24
commit
b592d9ff83
@ -50,6 +50,7 @@
|
|||||||
#define GLM_PLATFORM_CHROME_NACL 0x00200000
|
#define GLM_PLATFORM_CHROME_NACL 0x00200000
|
||||||
#define GLM_PLATFORM_UNIX 0x00400000
|
#define GLM_PLATFORM_UNIX 0x00400000
|
||||||
#define GLM_PLATFORM_QNXNTO 0x00800000
|
#define GLM_PLATFORM_QNXNTO 0x00800000
|
||||||
|
#define GLM_PLATFORM_WINCE 0x01000000
|
||||||
|
|
||||||
#ifdef GLM_FORCE_PLATFORM_UNKNOWN
|
#ifdef GLM_FORCE_PLATFORM_UNKNOWN
|
||||||
# define GLM_PLATFORM GLM_PLATFORM_UNKNOWN
|
# define GLM_PLATFORM GLM_PLATFORM_UNKNOWN
|
||||||
@ -57,6 +58,8 @@
|
|||||||
# define GLM_PLATFORM GLM_PLATFORM_QNXNTO
|
# define GLM_PLATFORM GLM_PLATFORM_QNXNTO
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
# define GLM_PLATFORM GLM_PLATFORM_APPLE
|
# define GLM_PLATFORM GLM_PLATFORM_APPLE
|
||||||
|
#elif defined(WINCE)
|
||||||
|
# define GLM_PLATFORM GLM_PLATFORM_WINCE
|
||||||
#elif defined(_WIN32)
|
#elif defined(_WIN32)
|
||||||
# define GLM_PLATFORM GLM_PLATFORM_WINDOWS
|
# define GLM_PLATFORM GLM_PLATFORM_WINDOWS
|
||||||
#elif defined(__native_client__)
|
#elif defined(__native_client__)
|
||||||
|
@ -37,11 +37,12 @@ More informations in GLM manual:
|
|||||||
http://glm.g-truc.net/glm.pdf
|
http://glm.g-truc.net/glm.pdf
|
||||||
|
|
||||||
================================================================================
|
================================================================================
|
||||||
GLM 0.9.4.5: 2013-06-XX
|
GLM 0.9.4.5: 2013-08-13
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
- Fixed inclusion of intrinsics in "pure" mode #92
|
- Fixed inclusion of intrinsics in "pure" mode #92
|
||||||
- Fixed language detection on GCC when the C++0x mode isn't enabled #95
|
- Fixed language detection on GCC when the C++0x mode isn't enabled #95
|
||||||
- Added missing value_ptr for quaternions #99
|
- Added missing value_ptr for quaternions #99
|
||||||
|
- Added WINCE detection #92
|
||||||
|
|
||||||
================================================================================
|
================================================================================
|
||||||
GLM 0.9.4.4: 2013-05-29
|
GLM 0.9.4.4: 2013-05-29
|
||||||
|
Loading…
x
Reference in New Issue
Block a user