*** empty log message ***

git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@78 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
ikits 2003-06-30 22:43:59 +00:00
parent 26fdaf3c97
commit f9d4b5e9e4
3 changed files with 3 additions and 2 deletions

View File

@ -82,6 +82,7 @@ name="EXT"><font size="+1"><b>EXT</b></font></a>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/blend_subtract.txt">EXT_blend_subtract</a><br> <a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/blend_subtract.txt">EXT_blend_subtract</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/clip_volume_hint.txt">EXT_clip_volume_hint</a><br> <a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/clip_volume_hint.txt">EXT_clip_volume_hint</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/compiled_vertex_array.txt">EXT_compiled_vertex_array</a><br> <a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/compiled_vertex_array.txt">EXT_compiled_vertex_array</a><br>
<a href="http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_depth_bounds_test.txt">EXT_depth_bounds_test</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/draw_range_elements.txt">EXT_draw_range_elements</a><br> <a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/draw_range_elements.txt">EXT_draw_range_elements</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/cull_vertex.txt">EXT_cull_vertex</a><br> <a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/cull_vertex.txt">EXT_cull_vertex</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/fog_coord.txt">EXT_fog_coord</a><br> <a href="http://oss.sgi.com/projects/ogl-sample/registry/EXT/fog_coord.txt">EXT_fog_coord</a><br>

View File

@ -2611,7 +2611,7 @@ extern GLEW_EXPORT PFNGLCULLPARAMETERDVEXTPROC glCullParameterdvEXT;
#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 #define GL_DEPTH_BOUNDS_TEST_EXT 0x8890
#define GL_DEPTH_BOUNDS_EXT 0x8891 #define GL_DEPTH_BOUNDS_EXT 0x8891
typedef void (GLAPIENTRY * PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); typedef void (APIENTRY * PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax);
extern GLEW_EXPORT PFNGLDEPTHBOUNDSEXTPROC glDepthBoundsEXT; extern GLEW_EXPORT PFNGLDEPTHBOUNDSEXTPROC glDepthBoundsEXT;

View File

@ -521,7 +521,7 @@ static void glewInfo_EXT_cull_vertex ()
/* ------------------------ GL_EXT_depth_bounds_test ---------------------- */ /* ------------------------ GL_EXT_depth_bounds_test ---------------------- */
#ifdef GL_EXT_depth_bounds_test #ifdef GL_EXT_depth_bounds_test
static void _glewInfo_EXT_depth_bounds_test () static void glewInfo_EXT_depth_bounds_test ()
{ {
char me[] = "GL_EXT_depth_bounds_test"; glewPrintExt(me, glew.EXT_depth_bounds_test); char me[] = "GL_EXT_depth_bounds_test"; glewPrintExt(me, glew.EXT_depth_bounds_test);
glewInfoFunc(glDepthBoundsEXT == NULL, "glDepthBoundsEXT"); glewInfoFunc(glDepthBoundsEXT == NULL, "glDepthBoundsEXT");