summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_screen.c
diff options
context:
space:
mode:
authorJon Smirl <jonsmirl@gmail.com>2004-06-03 02:34:31 +0000
committerJon Smirl <jonsmirl@gmail.com>2004-06-03 02:34:31 +0000
commit8f980b0e748f7c5a49e75c00ef4fa0b077d78197 (patch)
tree12b40dfb6eb3aee4f86fcc9e398e8902a74cdc64 /src/mesa/drivers/dri/radeon/radeon_screen.c
parentba3d643c49ce16f8dcddac56308588839c55bc87 (diff)
Open/Close FullScreen die. unichrome and savage implemented, code is ifdef'd out
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_screen.c')
-rw-r--r--src/mesa/drivers/dri/radeon/radeon_screen.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_screen.c b/src/mesa/drivers/dri/radeon/radeon_screen.c
index 25d5be5790..6043eab334 100644
--- a/src/mesa/drivers/dri/radeon/radeon_screen.c
+++ b/src/mesa/drivers/dri/radeon/radeon_screen.c
@@ -526,9 +526,6 @@ radeonDestroyBuffer(__DRIdrawablePrivate *driDrawPriv)
_mesa_destroy_framebuffer((GLframebuffer *) (driDrawPriv->driverPrivate));
}
-
-
-
static struct __DriverAPIRec radeonAPI = {
.InitDriver = radeonInitDriver,
.DestroyScreen = radeonDestroyScreen,
@@ -539,8 +536,6 @@ static struct __DriverAPIRec radeonAPI = {
.SwapBuffers = radeonSwapBuffers,
.MakeCurrent = radeonMakeCurrent,
.UnbindContext = radeonUnbindContext,
- .OpenFullScreen = NULL,
- .CloseFullScreen = NULL,
.GetSwapInfo = getSwapInfo,
.GetMSC = driGetMSC32,
.WaitForMSC = driWaitForMSC32,
@@ -549,7 +544,6 @@ static struct __DriverAPIRec radeonAPI = {
};
-
/*
* This is the bootstrap function for the driver.
* The __driCreateScreen name is the symbol that libGL.so fetches.