Fixed missing define for GL_TEXTURE_RECTANGLE_ARB in OpenGL code.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1250 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2006-12-29 15:16:47 +00:00
parent 60af2ffe33
commit cf998fb59f
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: FrameBufferGL.cxx,v 1.79 2006-12-22 23:14:39 stephena Exp $ // $Id: FrameBufferGL.cxx,v 1.80 2006-12-29 15:16:47 stephena Exp $
//============================================================================ //============================================================================
#ifdef DISPLAY_OPENGL #ifdef DISPLAY_OPENGL
@ -43,6 +43,9 @@
// These are not defined in the current version of SDL_opengl.h // These are not defined in the current version of SDL_opengl.h
// Hopefully speed up OpenGL rendering in OSX // Hopefully speed up OpenGL rendering in OSX
#ifndef GL_TEXTURE_RECTANGLE_ARB
#define GL_TEXTURE_RECTANGLE_ARB 0x84F5
#endif
#ifndef GL_TEXTURE_STORAGE_HINT_APPLE #ifndef GL_TEXTURE_STORAGE_HINT_APPLE
#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC #define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC
#endif #endif