summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/common
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-01-29 12:09:56 -0700
committerBrian Paul <brianp@vmware.com>2013-01-29 12:32:13 -0700
commitce6bf2d4c5968da9beaa5c8192fe1a15e64f318e (patch)
tree1afdf2df384ac4c0e9320886cc9321ed5c2cc37a /src/mesa/drivers/common
parent67e7263e4567f36e59009a1ca076a2854a6c1b0e (diff)
mesa: remove ctx->Driver.Error() hook
Not used by any driver anymore. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r--src/mesa/drivers/common/driverfuncs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c
index cf6b686dd7e..aab61e1a4a8 100644
--- a/src/mesa/drivers/common/driverfuncs.c
+++ b/src/mesa/drivers/common/driverfuncs.c
@@ -75,7 +75,6 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
driver->UpdateState = NULL; /* REQUIRED! */
driver->GetBufferSize = NULL; /* REQUIRED! */
driver->ResizeBuffers = _mesa_resize_framebuffer;
- driver->Error = NULL;
driver->Finish = NULL;
driver->Flush = NULL;