diff options
author | Keith Whitwell <[email protected]> | 2009-01-08 16:35:05 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-01-08 16:35:05 +0000 |
commit | 221352bbd79a0ea92ce31cffb65537f62ee5668e (patch) | |
tree | 4dd5bdc2d8b7f6553bd2316b48cc72cf194a2476 /src/gallium | |
parent | 44a9f505d79fe843068ecc89e37aec02682fb8a0 (diff) |
xlib: strip out glXAllocateMemoryMESA & friends
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/xlib/glxapi.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/gallium/state_trackers/xlib/glxapi.c b/src/gallium/state_trackers/xlib/glxapi.c index a53914e1e45..51f7be6d30c 100644 --- a/src/gallium/state_trackers/xlib/glxapi.c +++ b/src/gallium/state_trackers/xlib/glxapi.c @@ -1043,29 +1043,6 @@ glXGetAGPOffsetMESA( const GLvoid *pointer ) } -/*** GLX_MESA_allocate_memory */ - -void * -glXAllocateMemoryMESA(Display *dpy, int scrn, size_t size, - float readfreq, float writefreq, float priority) -{ - /* dummy */ - return NULL; -} - -void -glXFreeMemoryMESA(Display *dpy, int scrn, void *pointer) -{ - /* dummy */ -} - - -GLuint -glXGetMemoryOffsetMESA(Display *dpy, int scrn, const void *pointer) -{ - /* dummy */ - return 0; -} /*** GLX_EXT_texture_from_pixmap */ @@ -1274,11 +1251,6 @@ static struct name_address_pair GLX_functions[] = { /*** GLX_MESA_agp_offset ***/ { "glXGetAGPOffsetMESA", (__GLXextFuncPtr) glXGetAGPOffsetMESA }, - /*** GLX_MESA_allocate_memory ***/ - { "glXAllocateMemoryMESA", (__GLXextFuncPtr) glXAllocateMemoryMESA }, - { "glXFreeMemoryMESA", (__GLXextFuncPtr) glXFreeMemoryMESA }, - { "glXGetMemoryOffsetMESA", (__GLXextFuncPtr) glXGetMemoryOffsetMESA }, - /*** GLX_EXT_texture_from_pixmap ***/ { "glXBindTexImageEXT", (__GLXextFuncPtr) glXBindTexImageEXT }, { "glXReleaseTexImageEXT", (__GLXextFuncPtr) glXReleaseTexImageEXT }, |