mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
mesa: remove FEATURE_texgen define.
Signed-off-by: Oliver McFadden <oliver.mcfadden@linux.intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
e5870d97eb
commit
eeed210c7d
3 changed files with 0 additions and 29 deletions
|
|
@ -84,7 +84,6 @@
|
|||
#define FEATURE_remap_table 0
|
||||
#endif
|
||||
|
||||
#define FEATURE_texgen 1
|
||||
#define FEATURE_userclip 1
|
||||
|
||||
#define FEATURE_accum FEATURE_GL
|
||||
|
|
|
|||
|
|
@ -41,9 +41,6 @@
|
|||
#include "main/dispatch.h"
|
||||
|
||||
|
||||
#if FEATURE_texgen
|
||||
|
||||
|
||||
/**
|
||||
* Return texgen state for given coordinate
|
||||
*/
|
||||
|
|
@ -441,6 +438,3 @@ _mesa_init_texgen_dispatch(struct _glapi_table *disp)
|
|||
SET_TexGeni(disp, _mesa_TexGeni);
|
||||
SET_TexGeniv(disp, _mesa_TexGeniv);
|
||||
}
|
||||
|
||||
|
||||
#endif /* FEATURE_texgen */
|
||||
|
|
|
|||
|
|
@ -34,8 +34,6 @@
|
|||
struct _glapi_table;
|
||||
|
||||
|
||||
#if FEATURE_texgen
|
||||
|
||||
extern void GLAPIENTRY
|
||||
_mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params );
|
||||
|
||||
|
|
@ -65,24 +63,4 @@ extern void GLAPIENTRY
|
|||
_es_TexGenfv(GLenum coord, GLenum pname, const GLfloat *params);
|
||||
|
||||
|
||||
#else /* FEATURE_texgen */
|
||||
|
||||
static void
|
||||
_mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params )
|
||||
{
|
||||
}
|
||||
|
||||
static void inline
|
||||
_mesa_TexGeni( GLenum coord, GLenum pname, GLint param )
|
||||
{
|
||||
}
|
||||
|
||||
static inline void
|
||||
_mesa_init_texgen_dispatch(struct _glapi_table *disp)
|
||||
{
|
||||
}
|
||||
|
||||
#endif /* FEATURE_texgen */
|
||||
|
||||
|
||||
#endif /* TEXGEN_H */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue