From 97e4488d80dccf1432534efd25be1f2070e2c304 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 29 Oct 2001 19:29:49 +0000 Subject: [PATCH] Changed a #define ... (GLenum) 0x84fe to 0x84FE to fix problems under MacOS9 build. --- include/osg/Texture | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/Texture b/include/osg/Texture index f16dc3355..5b5164d08 100644 --- a/include/osg/Texture +++ b/include/osg/Texture @@ -21,7 +21,7 @@ // if not defined by gl.h use the definition found in: // http://oss.sgi.com/projects/ogl-sample/registry/EXT/texture_filter_anisotropic.txt #ifndef GL_TEXTURE_MAX_ANISOTROPY_EXT -#define GL_TEXTURE_MAX_ANISOTROPY_EXT (GLenum)0x84fe +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE #endif #ifndef GL_ARB_texture_compression @@ -50,7 +50,7 @@ #endif #ifndef GL_GENERATE_MIPMAP_SGIS -#define GL_GENERATE_MIPMAP_SGIS (GLenum)0x8191 +#define GL_GENERATE_MIPMAP_SGIS 0x8191 #define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 #endif