added GLX_ARB_get_proc_address to extension list

This commit is contained in:
Brian Paul 1999-12-11 09:20:53 +00:00
parent cd96388857
commit 97febca0f3
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $Id: fakeglx.c,v 1.19 1999/11/28 20:15:04 brianp Exp $ */
/* $Id: fakeglx.c,v 1.20 1999/12/11 09:20:53 brianp Exp $ */
/*
* Mesa 3-D graphics library
@ -1473,10 +1473,10 @@ static const char *get_extensions( void )
#ifdef FX
const char *fx = getenv("MESA_GLX_FX");
if (fx && fx[0] != 'd') {
return "GLX_MESA_pixmap_colormap GLX_EXT_visual_info GLX_MESA_release_buffers GLX_MESA_copy_sub_buffer GLX_SGI_video_sync GLX_MESA_set_3dfx_mode";
return "GLX_MESA_pixmap_colormap GLX_EXT_visual_info GLX_MESA_release_buffers GLX_MESA_copy_sub_buffer GLX_SGI_video_sync GLX_MESA_set_3dfx_mode GLX_ARB_get_proc_address";
}
#endif
return "GLX_MESA_pixmap_colormap GLX_EXT_visual_info GLX_MESA_release_buffers GLX_MESA_copy_sub_buffer GLX_SGI_video_sync";
return "GLX_MESA_pixmap_colormap GLX_EXT_visual_info GLX_MESA_release_buffers GLX_MESA_copy_sub_buffer GLX_SGI_video_sync GLX_ARB_get_proc_address";
}