diff options
author | Paul Berry <[email protected]> | 2012-10-31 14:13:16 -0700 |
---|---|---|
committer | Paul Berry <[email protected]> | 2012-11-06 12:57:46 -0800 |
commit | 91b828ea740daa0bff6abb7da03dd18594016091 (patch) | |
tree | 23092e8f278c403bd0e6af2f680272e8f634aabc /src/mesa/main/histogram.c | |
parent | 98874ec30b3db83454cc55bbdda910a0ec16ff53 (diff) |
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 <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/histogram.c')
-rw-r--r-- | src/mesa/main/histogram.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mesa/main/histogram.c b/src/mesa/main/histogram.c index b11fbf12a20..fe454bcfb06 100644 --- a/src/mesa/main/histogram.c +++ b/src/mesa/main/histogram.c @@ -143,23 +143,3 @@ _mesa_ResetMinmax(GLenum target) _mesa_error(ctx, GL_INVALID_OPERATION, "glResetMinmax"); } - - -void -_mesa_init_histogram_dispatch(struct _glapi_table *disp) -{ - SET_GetHistogram(disp, _mesa_GetHistogram); - SET_GetHistogramParameterfv(disp, _mesa_GetHistogramParameterfv); - SET_GetHistogramParameteriv(disp, _mesa_GetHistogramParameteriv); - SET_GetMinmax(disp, _mesa_GetMinmax); - SET_GetMinmaxParameterfv(disp, _mesa_GetMinmaxParameterfv); - SET_GetMinmaxParameteriv(disp, _mesa_GetMinmaxParameteriv); - SET_Histogram(disp, _mesa_Histogram); - SET_Minmax(disp, _mesa_Minmax); - SET_ResetHistogram(disp, _mesa_ResetHistogram); - SET_ResetMinmax(disp, _mesa_ResetMinmax); - - /* GL_ARB_robustness */ - SET_GetnHistogramARB(disp, _mesa_GetnHistogramARB); - SET_GetnMinmaxARB(disp, _mesa_GetnMinmaxARB); -} |