summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-04-21 20:13:07 -0600
committerBrian Paul <brianp@vmware.com>2011-04-21 20:13:11 -0600
commit864fe253b04105b7469e5f7b064dc37637b944f8 (patch)
treea9e14d819e84e3511b41164ff877413ef5c4a644
parentf4bf45e2b94b582cacd19cdca873c5be627e4250 (diff)
downloadmesa-arb_robustness.tar.gz
mesa: s/exec/disp/ in _mesa_init_histogram_dispatch()arb_robustness
This function isn't normally compiled (FEATURE_histogram).
-rw-r--r--src/mesa/main/histogram.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/histogram.c b/src/mesa/main/histogram.c
index 09e48eba99c..44fc1325ceb 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 */