diff options
author | Brian Paul <[email protected]> | 2000-03-07 17:55:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-03-07 17:55:40 +0000 |
commit | 64eef48741a858c6783eea33d7646014af8be09b (patch) | |
tree | 8a10a3b5ba8cbeced59644459b6b93b7fb48ca70 /include | |
parent | aabf086a03f27aace21f56098989f94b5697c8dd (diff) |
added GL_HP_occlusion_test, GL_EXT_texture_lod_bias
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/glext.h | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/include/GL/glext.h b/include/GL/glext.h index bfbaaa81530..9588692ac38 100644 --- a/include/GL/glext.h +++ b/include/GL/glext.h @@ -32,7 +32,14 @@ extern "C" { #endif -#define GL_GLEXT_VERSION_EXT 1 +/* + * Versions: + * 1. Brian Paul, 24 Feb 2000 + * Intial Version + * 2. Brian Paul, 7 Mar 2000 + * Added GL_HP_occlusion_test, GL_EXT_texture_lod_bias + */ +#define GL_GLEXT_VERSION_EXT 2 /* @@ -1066,6 +1073,19 @@ typedef void (APIENTRY * PFNGLLIGHTENVISGIXPROC) (GLenum pname, GLint param); /* + * 137. GL_HP_occlusion_test + */ +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 + +#define GL_OCCLUSION_TEST_HP 0x? +#define GL_OCCLUSION_TEST_RESULT_HP 0x? + +#endif /* GL_HP_occlusion_test */ + + + +/* * 141. GL_EXT_shared_texture_palette (req's GL_EXT_paletted_texture) */ #ifndef GL_EXT_shared_texture_palette @@ -1217,6 +1237,19 @@ typedef void (APIENTRY * PFNGLBLENDFUNCSEPARATEINGRPROC) (GLenum sfactorRGB, GLe /* + * 186. GL_EXT_texture_lod_bias + */ +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 + +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 + +#endif /* GL_EXT_texture_lod_bias */ + + + +/* * ??. GL_WIN_swap_hint */ #ifndef GL_WIN_swap_hint |