From faa9d69709a0e112f0308ddd98d709f66c060095 Mon Sep 17 00:00:00 2001 From: nigels Date: Sun, 2 Nov 2008 22:37:19 +0000 Subject: [PATCH] Fix for Apple OSX - GLint is always 32 bit\nReviewed by Milan Ikits, Stephane Denis git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@540 783a27ee-832a-0410-bc00-9f386506c6dd --- auto/src/glew_head.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/auto/src/glew_head.h b/auto/src/glew_head.h index 93d1fa5..fe1aafe 100644 --- a/auto/src/glew_head.h +++ b/auto/src/glew_head.h @@ -143,19 +143,11 @@ extern "C" { #ifndef GL_VERSION_1_1 #define GL_VERSION_1_1 1 -#if defined(__APPLE__) -typedef unsigned long GLenum; -typedef unsigned long GLbitfield; -typedef unsigned long GLuint; -typedef long GLint; -typedef long GLsizei; -#else typedef unsigned int GLenum; typedef unsigned int GLbitfield; typedef unsigned int GLuint; typedef int GLint; typedef int GLsizei; -#endif typedef unsigned char GLboolean; typedef signed char GLbyte; typedef short GLshort;