From 91b828ea740daa0bff6abb7da03dd18594016091 Mon Sep 17 00:00:00 2001 From: Paul Berry Date: Wed, 31 Oct 2012 14:13:16 -0700 Subject: dispatch: Delete unused init_dispatch functions. The new code-generated version of _mesa_create_exec_table() populates the entire dispatch table (except for dynamic functions) by itself; it no longer calls separate functions to initialize parts of the dispatch table. This patch removes those no-longer-needed functions. Reviewed-by: Jordan Justen Reviewed-by: Matt Turner --- src/mesa/main/accum.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/mesa/main/accum.c') diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c index 0206c16..6416ee8 100644 --- a/src/mesa/main/accum.c +++ b/src/mesa/main/accum.c @@ -106,14 +106,6 @@ _mesa_Accum( GLenum op, GLfloat value ) } -void -_mesa_init_accum_dispatch(struct _glapi_table *disp) -{ - SET_Accum(disp, _mesa_Accum); - SET_ClearAccum(disp, _mesa_ClearAccum); -} - - /** * Clear the accumulation buffer by mapping the renderbuffer and * writing the clear color to it. Called by the driver's implementation -- cgit v1.1