[Mesa-dev] [PATCH] mesa: remove ctx->Driver.Error() hook

Brian Paul brianp at vmware.com
Tue Jan 29 11:10:19 PST 2013


Not used by any driver anymore.
---
 src/mesa/drivers/common/driverfuncs.c |    1 -
 src/mesa/main/context.c               |    5 -----
 src/mesa/main/dd.h                    |    6 ------
 3 files changed, 0 insertions(+), 12 deletions(-)

diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c
index cf6b686..aab61e1 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;
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 5e9e539..531b811 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1663,11 +1663,6 @@ _mesa_record_error(struct gl_context *ctx, GLenum error)
    if (ctx->ErrorValue == GL_NO_ERROR) {
       ctx->ErrorValue = error;
    }
-
-   /* Call device driver's error handler, if any.  This is used on the Mac. */
-   if (ctx->Driver.Error) {
-      ctx->Driver.Error(ctx);
-   }
 }
 
 
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index f91fd41..9a75fd9 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -109,12 +109,6 @@ struct dd_function_table {
                           GLuint width, GLuint height);
 
    /**
-    * Called whenever an error is generated.  
-    * __struct gl_contextRec::ErrorValue contains the error value.
-    */
-   void (*Error)( struct gl_context *ctx );
-
-   /**
     * This is called whenever glFinish() is called.
     */
    void (*Finish)( struct gl_context *ctx );
-- 
1.7.3.4



More information about the mesa-dev mailing list