summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/fb/fb_dri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/fb/fb_dri.c')
-rw-r--r--src/mesa/drivers/dri/fb/fb_dri.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/mesa/drivers/dri/fb/fb_dri.c b/src/mesa/drivers/dri/fb/fb_dri.c
index 5b3fbd33d4..3a388cebc1 100644
--- a/src/mesa/drivers/dri/fb/fb_dri.c
+++ b/src/mesa/drivers/dri/fb/fb_dri.c
@@ -557,12 +557,6 @@ fbUnbindContext( __DRIcontextPrivate *driContextPriv )
return GL_TRUE;
}
-static GLboolean
-fbOpenCloseFullScreen( __DRIcontextPrivate *driContextPriv )
-{
- return GL_TRUE;
-}
-
static struct __DriverAPIRec fbAPI = {
fbInitDriver,
fbDestroyScreen,
@@ -572,12 +566,16 @@ static struct __DriverAPIRec fbAPI = {
fbDestroyBuffer,
fbSwapBuffers,
fbMakeCurrent,
- fbUnbindContext,
- fbOpenCloseFullScreen,
- fbOpenCloseFullScreen
+ fbUnbindContext
};
+void
+__driRegisterExtensions( void )
+{
+}
+
+
/*
* This is the bootstrap function for the driver.
* The __driCreateScreen name is the symbol that libGL.so fetches.