summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorJon Smirl <jonsmirl@gmail.com>2004-06-03 01:56:07 +0000
committerJon Smirl <jonsmirl@gmail.com>2004-06-03 01:56:07 +0000
commitba3d643c49ce16f8dcddac56308588839c55bc87 (patch)
tree492d08e17c016a1eb6c92c51de1af6c663b35b72 /src/mesa
parent5b98ada88071a752b6000756949a1951183cdd0b (diff)
kill __driRegisterExtensions(), none of the functions did anything
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/fb/fb_dri.c6
-rw-r--r--src/mesa/drivers/dri/mach64/mach64_screen.c26
-rw-r--r--src/mesa/drivers/dri/r128/r128_screen.c30
-rw-r--r--src/mesa/drivers/dri/x11/x11_dri.c5
4 files changed, 0 insertions, 67 deletions
diff --git a/src/mesa/drivers/dri/fb/fb_dri.c b/src/mesa/drivers/dri/fb/fb_dri.c
index 1d35be2c77..5b3fbd33d4 100644
--- a/src/mesa/drivers/dri/fb/fb_dri.c
+++ b/src/mesa/drivers/dri/fb/fb_dri.c
@@ -578,12 +578,6 @@ static struct __DriverAPIRec fbAPI = {
};
-void
-__driRegisterExtensions( void )
-{
-}
-
-
/*
* This is the bootstrap function for the driver.
* The __driCreateScreen name is the symbol that libGL.so fetches.
diff --git a/src/mesa/drivers/dri/mach64/mach64_screen.c b/src/mesa/drivers/dri/mach64/mach64_screen.c
index 8ec10ea110..b11a1623da 100644
--- a/src/mesa/drivers/dri/mach64/mach64_screen.c
+++ b/src/mesa/drivers/dri/mach64/mach64_screen.c
@@ -443,32 +443,6 @@ mach64InitDriver( __DRIscreenPrivate *driScreen )
return GL_TRUE;
}
-#ifndef _SOLO
-/* This function is called by libGL.so as soon as libGL.so is loaded.
- * This is where we register new extension functions with the dispatcher.
- */
-void __driRegisterExtensions( void )
-{
-#if 0
- /* KW: This is handled differently in the other drivers, not sure
- * what to do here.
- */
- PFNGLXENABLEEXTENSIONPROC glx_enable_extension;
-
- if ( driCompareGLXAPIVersion( 20030317 ) >= 0 ) {
- glx_enable_extension = (PFNGLXENABLEEXTENSIONPROC)
- glXGetProcAddress( (const GLubyte *) "__glXEnableExtension" );
-
- if ( glx_enable_extension != NULL ) {
- glx_enable_extension( "GLX_SGI_swap_control", GL_FALSE );
- glx_enable_extension( "GLX_SGI_video_sync", GL_FALSE );
- glx_enable_extension( "GLX_MESA_swap_control", GL_FALSE );
- }
- }
-#endif
-}
-#endif
-
static struct __DriverAPIRec mach64API = {
.InitDriver = mach64InitDriver,
.DestroyScreen = mach64DestroyScreen,
diff --git a/src/mesa/drivers/dri/r128/r128_screen.c b/src/mesa/drivers/dri/r128/r128_screen.c
index 5825e95ef2..48a17ab172 100644
--- a/src/mesa/drivers/dri/r128/r128_screen.c
+++ b/src/mesa/drivers/dri/r128/r128_screen.c
@@ -335,36 +335,6 @@ r128InitDriver( __DRIscreenPrivate *sPriv )
return GL_TRUE;
}
-#ifndef _SOLO
-/**
- * This function is called by libGL.so as soon as libGL.so is loaded.
- * This is where we register new extension functions with the dispatcher.
- *
- * \todo This interface has been deprecated, so we should probably remove
- * this function before the next XFree86 release.
- */
-void __driRegisterExtensions( void )
-{
-#if 0
- /* KW: This is done slightly differently to the other drivers and
- dri_interface.h doesn't seem to cope.
- */
- PFNGLXENABLEEXTENSIONPROC
- glx_enable_extension;
-
- if ( driCompareGLXAPIVersion( 20030317 ) >= 0 ) {
- glx_enable_extension = (PFNGLXENABLEEXTENSIONPROC)
- glXGetProcAddress( (const GLubyte *) "__glXEnableExtension" );
-
- if ( glx_enable_extension != NULL ) {
- glx_enable_extension( "GLX_SGI_swap_control", GL_FALSE );
- glx_enable_extension( "GLX_SGI_video_sync", GL_FALSE );
- glx_enable_extension( "GLX_MESA_swap_control", GL_FALSE );
- }
- }
-#endif
-}
-#endif
static struct __DriverAPIRec r128API = {
.InitDriver = r128InitDriver,
diff --git a/src/mesa/drivers/dri/x11/x11_dri.c b/src/mesa/drivers/dri/x11/x11_dri.c
index 5ea3f1a1c4..cc307b0cc4 100644
--- a/src/mesa/drivers/dri/x11/x11_dri.c
+++ b/src/mesa/drivers/dri/x11/x11_dri.c
@@ -450,11 +450,6 @@ static struct __DriverAPIRec x11API = {
x11OpenCloseFullScreen
};
-void
-__driRegisterExtensions(void)
-{
-}
-
/*
* This is the bootstrap function for the driver.
* The __driCreateScreen name is the symbol that libGL.so fetches.