mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
mesa: remove FEATURE_evaluators define.
Signed-off-by: Oliver McFadden <oliver.mcfadden@linux.intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
24c3d16f3b
commit
fa9fc2332b
5 changed files with 0 additions and 34 deletions
|
|
@ -48,9 +48,6 @@
|
|||
#include "main/dispatch.h"
|
||||
|
||||
|
||||
#if FEATURE_evaluators
|
||||
|
||||
|
||||
/*
|
||||
* Return the number of components per control point for any type of
|
||||
* evaluator. Return 0 if bad target.
|
||||
|
|
@ -924,9 +921,6 @@ _mesa_init_eval_dispatch(struct _glapi_table *disp)
|
|||
}
|
||||
|
||||
|
||||
#endif /* FEATURE_evaluators */
|
||||
|
||||
|
||||
/**********************************************************************/
|
||||
/***** Initialization *****/
|
||||
/**********************************************************************/
|
||||
|
|
|
|||
|
|
@ -41,8 +41,6 @@
|
|||
#include "main/mtypes.h"
|
||||
|
||||
|
||||
#if FEATURE_evaluators
|
||||
|
||||
#define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) \
|
||||
do { \
|
||||
(vfmt)->EvalCoord1f = impl ## EvalCoord1f; \
|
||||
|
|
@ -83,23 +81,6 @@ _mesa_install_eval_vtxfmt(struct _glapi_table *disp,
|
|||
extern void
|
||||
_mesa_init_eval_dispatch(struct _glapi_table *disp);
|
||||
|
||||
#else /* FEATURE_evaluators */
|
||||
|
||||
#define _MESA_INIT_EVAL_VTXFMT(vfmt, impl) do { } while (0)
|
||||
|
||||
static inline void
|
||||
_mesa_install_eval_vtxfmt(struct _glapi_table *disp,
|
||||
const GLvertexformat *vfmt)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void
|
||||
_mesa_init_eval_dispatch(struct _glapi_table *disp)
|
||||
{
|
||||
}
|
||||
|
||||
#endif /* FEATURE_evaluators */
|
||||
|
||||
extern void _mesa_init_eval( struct gl_context *ctx );
|
||||
extern void _mesa_free_eval_data( struct gl_context *ctx );
|
||||
|
||||
|
|
|
|||
|
|
@ -84,7 +84,6 @@
|
|||
#define FEATURE_remap_table 0
|
||||
#endif
|
||||
|
||||
#define FEATURE_evaluators FEATURE_GL
|
||||
#define FEATURE_feedback FEATURE_GL
|
||||
#define FEATURE_pixel_transfer FEATURE_GL
|
||||
#define FEATURE_queryobj FEATURE_GL
|
||||
|
|
|
|||
|
|
@ -550,8 +550,6 @@ vbo_exec_FlushVertices_internal(struct vbo_exec_context *exec, GLboolean unmap)
|
|||
}
|
||||
|
||||
|
||||
#if FEATURE_evaluators
|
||||
|
||||
static void GLAPIENTRY vbo_exec_EvalCoord1f( GLfloat u )
|
||||
{
|
||||
GET_CURRENT_CONTEXT( ctx );
|
||||
|
|
@ -754,8 +752,6 @@ vbo_exec_EvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
|
|||
}
|
||||
}
|
||||
|
||||
#endif /* FEATURE_evaluators */
|
||||
|
||||
|
||||
/**
|
||||
* Execute a glRectf() function. This is not suitable for GL_COMPILE
|
||||
|
|
|
|||
|
|
@ -301,8 +301,6 @@ _mesa_noop_Vertex4f(GLfloat a, GLfloat b, GLfloat c, GLfloat d)
|
|||
{
|
||||
}
|
||||
|
||||
|
||||
#if FEATURE_evaluators
|
||||
static void GLAPIENTRY
|
||||
_mesa_noop_EvalCoord1f(GLfloat a)
|
||||
{
|
||||
|
|
@ -332,8 +330,6 @@ static void GLAPIENTRY
|
|||
_mesa_noop_EvalPoint2(GLint a, GLint b)
|
||||
{
|
||||
}
|
||||
#endif /* FEATURE_evaluators */
|
||||
|
||||
|
||||
static void GLAPIENTRY
|
||||
_mesa_noop_Begin(GLenum mode)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue