From 864fe253b04105b7469e5f7b064dc37637b944f8 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 21 Apr 2011 20:13:07 -0600 Subject: mesa: s/exec/disp/ in _mesa_init_histogram_dispatch() This function isn't normally compiled (FEATURE_histogram). --- src/mesa/main/histogram.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/histogram.c b/src/mesa/main/histogram.c index 09e48eba99..44fc1325ce 100644 --- a/src/mesa/main/histogram.c +++ b/src/mesa/main/histogram.c @@ -166,8 +166,8 @@ _mesa_init_histogram_dispatch(struct _glapi_table *disp) SET_ResetMinmax(disp, _mesa_ResetMinmax); /* GL_ARB_robustness */ - SET_GetnHistogramARB(exec, _mesa_GetnHistogramARB); - SET_GetnMinmaxARB(exec, _mesa_GetnMinmaxARB); + SET_GetnHistogramARB(disp, _mesa_GetnHistogramARB); + SET_GetnMinmaxARB(disp, _mesa_GetnMinmaxARB); } #endif /* FEATURE_histogram */ -- cgit v1.2.3