mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
xlib: remove empty GLX_MESA_agp_offset stubs
The extension was never implemented and seemingly never will. The DRI based libGL dropped support for it over 10 years ago. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
b1e7386f1b
commit
bcf0ce4016
3 changed files with 0 additions and 23 deletions
|
|
@ -2987,9 +2987,6 @@ _mesa_GetGLXDispatchTable(void)
|
|||
/*** GLX_MESA_set_3dfx_mode ***/
|
||||
glx.Set3DfxModeMESA = Fake_glXSet3DfxModeMESA;
|
||||
|
||||
/*** GLX_MESA_agp_offset ***/
|
||||
glx.GetAGPOffsetMESA = Fake_glXGetAGPOffsetMESA;
|
||||
|
||||
/*** GLX_EXT_texture_from_pixmap ***/
|
||||
glx.BindTexImageEXT = Fake_glXBindTexImageEXT;
|
||||
glx.ReleaseTexImageEXT = Fake_glXReleaseTexImageEXT;
|
||||
|
|
|
|||
|
|
@ -1019,20 +1019,6 @@ glXSet3DfxModeMESA(int mode)
|
|||
|
||||
|
||||
|
||||
/*** GLX_MESA_agp_offset */
|
||||
|
||||
GLuint PUBLIC
|
||||
glXGetAGPOffsetMESA( const GLvoid *pointer )
|
||||
{
|
||||
struct _glxapi_table *t;
|
||||
Display *dpy = glXGetCurrentDisplay();
|
||||
GET_DISPATCH(dpy, t);
|
||||
if (!t)
|
||||
return ~0;
|
||||
return t->GetAGPOffsetMESA(pointer);
|
||||
}
|
||||
|
||||
|
||||
/*** GLX_EXT_texture_from_pixmap */
|
||||
|
||||
void PUBLIC
|
||||
|
|
@ -1257,9 +1243,6 @@ static struct name_address_pair GLX_functions[] = {
|
|||
/*** GLX_ARB_get_proc_address ***/
|
||||
{ "glXGetProcAddressARB", (__GLXextFuncPtr) glXGetProcAddressARB },
|
||||
|
||||
/*** GLX_MESA_agp_offset ***/
|
||||
{ "glXGetAGPOffsetMESA", (__GLXextFuncPtr) glXGetAGPOffsetMESA },
|
||||
|
||||
/*** GLX_EXT_texture_from_pixmap ***/
|
||||
{ "glXBindTexImageEXT", (__GLXextFuncPtr) glXBindTexImageEXT },
|
||||
{ "glXReleaseTexImageEXT", (__GLXextFuncPtr) glXReleaseTexImageEXT },
|
||||
|
|
|
|||
|
|
@ -186,9 +186,6 @@ struct _glxapi_table {
|
|||
/*** GLX_MESA_set_3dfx_mode ***/
|
||||
Bool (*Set3DfxModeMESA)(int mode);
|
||||
|
||||
/*** GLX_MESA_agp_offset ***/
|
||||
GLuint (*GetAGPOffsetMESA)( const GLvoid *pointer );
|
||||
|
||||
/*** GLX_EXT_texture_from_pixmap ***/
|
||||
void (*BindTexImageEXT)(Display *dpy, GLXDrawable drawable, int buffer,
|
||||
const int *attrib_list);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue