From db58b57cf8a9a4600376e542c400519bb6d06d2a Mon Sep 17 00:00:00 2001 From: Spoike Date: Thu, 7 Oct 2004 13:14:42 +0000 Subject: [PATCH] GL_SGIS_generate_mipmap added git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@314 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/gl/glsupp.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/engine/gl/glsupp.h b/engine/gl/glsupp.h index f9d146017..5f0885781 100644 --- a/engine/gl/glsupp.h +++ b/engine/gl/glsupp.h @@ -384,6 +384,12 @@ typedef GLboolean (APIENTRYP PFNGLISPROGRAMARBPROC) (GLuint program); /* All ARB_fragment_program entry points are shared with ARB_vertex_program. */ #endif +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 + +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 +#endif #endif