mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 22:10:10 +01:00
mesa: remove never-defined FEATURE_histogram conditional.
Signed-off-by: Oliver McFadden <oliver.mcfadden@linux.intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
9f37b405a3
commit
2bc8f03f49
2 changed files with 0 additions and 15 deletions
|
|
@ -32,8 +32,6 @@
|
||||||
#include "main/dispatch.h"
|
#include "main/dispatch.h"
|
||||||
|
|
||||||
|
|
||||||
#if FEATURE_histogram
|
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* API functions
|
* API functions
|
||||||
*/
|
*/
|
||||||
|
|
@ -169,5 +167,3 @@ _mesa_init_histogram_dispatch(struct _glapi_table *disp)
|
||||||
SET_GetnHistogramARB(disp, _mesa_GetnHistogramARB);
|
SET_GetnHistogramARB(disp, _mesa_GetnHistogramARB);
|
||||||
SET_GetnMinmaxARB(disp, _mesa_GetnMinmaxARB);
|
SET_GetnMinmaxARB(disp, _mesa_GetnMinmaxARB);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* FEATURE_histogram */
|
|
||||||
|
|
|
||||||
|
|
@ -41,18 +41,7 @@
|
||||||
|
|
||||||
struct _glapi_table;
|
struct _glapi_table;
|
||||||
|
|
||||||
#if FEATURE_histogram
|
|
||||||
|
|
||||||
extern void
|
extern void
|
||||||
_mesa_init_histogram_dispatch(struct _glapi_table *disp);
|
_mesa_init_histogram_dispatch(struct _glapi_table *disp);
|
||||||
|
|
||||||
#else /* FEATURE_histogram */
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
_mesa_init_histogram_dispatch(struct _glapi_table *disp)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* FEATURE_histogram */
|
|
||||||
|
|
||||||
#endif /* HISTOGRAM_H */
|
#endif /* HISTOGRAM_H */
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue