mesa: Remove the dead PrepareExecBegin() driver hook.
authorEric Anholt <eric@anholt.net>
Wed, 16 Jan 2013 23:07:31 +0000 (15:07 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 22 Jan 2013 05:26:47 +0000 (21:26 -0800)
This was used in i965 for a while, but no more.

Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/drivers/common/driverfuncs.c
src/mesa/main/dd.h
src/mesa/vbo/vbo_exec_api.c

index 3de5199b477f5c6d407f26cf75ca7771750c7554..cf6b686dd7e90fef99fecfff9bd364136bdaddae 100644 (file)
@@ -198,7 +198,6 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
    driver->ProgramStringNotify = _tnl_program_string;
    driver->FlushVertices = NULL;
    driver->SaveFlushVertices = NULL;
-   driver->PrepareExecBegin = NULL;
    driver->NotifySaveBegin = NULL;
    driver->LightingSpaceChange = NULL;
 
index 07787d41dd9495c0d5ec1dd5542b32aef5f6c2c9..f91fd4120322b2dd739aa00737e9fd49eee4acec 100644 (file)
@@ -722,14 +722,6 @@ struct dd_function_table {
    void (*FlushVertices)( struct gl_context *ctx, GLuint flags );
    void (*SaveFlushVertices)( struct gl_context *ctx );
 
-   /**
-    * \brief Hook for drivers to prepare for a glBegin/glEnd block
-    *
-    * This hook is called in vbo_exec_Begin() before any action, including
-    * state updates, occurs.
-    */
-   void (*PrepareExecBegin)( struct gl_context *ctx );
-
    /**
     * Give the driver the opportunity to hook in its own vtxfmt for
     * compiling optimized display lists.  This is called on each valid
index 42eb953c223d0a0d4d827182e6dccebaad0ddffb..84bcdd63bf33a187b47448d0d033109ccb08348c 100644 (file)
@@ -803,9 +803,6 @@ static void GLAPIENTRY vbo_exec_Begin( GLenum mode )
 
    vbo_draw_method(vbo_context(ctx), DRAW_BEGIN_END);
 
-   if (ctx->Driver.PrepareExecBegin)
-      ctx->Driver.PrepareExecBegin(ctx);
-
    if (ctx->NewState) {
       _mesa_update_state( ctx );