summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/x11/x11_dri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/x11/x11_dri.c')
-rw-r--r--src/mesa/drivers/dri/x11/x11_dri.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/mesa/drivers/dri/x11/x11_dri.c b/src/mesa/drivers/dri/x11/x11_dri.c
index cc307b0cc4..9d92ce8dab 100644
--- a/src/mesa/drivers/dri/x11/x11_dri.c
+++ b/src/mesa/drivers/dri/x11/x11_dri.c
@@ -430,12 +430,6 @@ x11UnbindContext(__DRIcontextPrivate *driContextPriv)
return GL_TRUE;
}
-static GLboolean
-x11OpenCloseFullScreen(__DRIcontextPrivate *driContextPriv)
-{
- return GL_TRUE;
-}
-
static struct __DriverAPIRec x11API = {
x11InitDriver,
x11DestroyScreen,
@@ -445,11 +439,14 @@ static struct __DriverAPIRec x11API = {
x11DestroyBuffer,
x11SwapBuffers,
x11MakeCurrent,
- x11UnbindContext,
- x11OpenCloseFullScreen,
- x11OpenCloseFullScreen
+ x11UnbindContext
};
+void
+__driRegisterExtensions(void)
+{
+}
+
/*
* This is the bootstrap function for the driver.
* The __driCreateScreen name is the symbol that libGL.so fetches.