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/attrib.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/mesa/main/attrib.c') diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 48df7f16b28..05db35b8e10 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1584,16 +1584,6 @@ _mesa_PopClientAttrib(void) } -void -_mesa_init_attrib_dispatch(struct _glapi_table *disp) -{ - SET_PopAttrib(disp, _mesa_PopAttrib); - SET_PushAttrib(disp, _mesa_PushAttrib); - SET_PopClientAttrib(disp, _mesa_PopClientAttrib); - SET_PushClientAttrib(disp, _mesa_PushClientAttrib); -} - - /** * Free any attribute state data that might be attached to the context. */ -- cgit v1.2.3