Standardized on defined(__ANDROID__)

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14556 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2014-11-28 10:54:40 +00:00
parent 6d98c5460f
commit d7c6bb1c4b
4 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@
#if defined(_WIN64)
typedef __int64 GLintptr;
typedef __int64 GLsizeiptr;
#elif defined(__ia64__) || defined(__x86_64__) || defined(ANDROID)
#elif defined(__ia64__) || defined(__x86_64__) || defined(__ANDROID__)
typedef long int GLintptr;
typedef long int GLsizeiptr;
#else