Module: Mesa Branch: arb_robustness Commit: 864fe253b04105b7469e5f7b064dc37637b944f8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=864fe253b04105b7469e5f7b064dc37637b944f8
Author: Brian Paul <[email protected]> Date: Thu Apr 21 20:13:07 2011 -0600 mesa: s/exec/disp/ in _mesa_init_histogram_dispatch() This function isn't normally compiled (FEATURE_histogram). --- src/mesa/main/histogram.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/histogram.c b/src/mesa/main/histogram.c index 09e48eb..44fc132 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 */ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
