mesa: remove FEATURE_rastpos define.

Signed-off-by: Oliver McFadden <oliver.mcfadden@linux.intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Oliver McFadden 2012-09-11 09:21:38 +03:00
parent 25ee9617ff
commit d4c2b1e8f8
5 changed files with 0 additions and 32 deletions

View File

@ -84,7 +84,6 @@
#define FEATURE_remap_table 0
#endif
#define FEATURE_rastpos FEATURE_GL
#define FEATURE_texture_fxt1 FEATURE_GL
#define FEATURE_texture_s3tc FEATURE_GL

View File

@ -39,9 +39,6 @@
#include "main/dispatch.h"
#if FEATURE_rastpos
/**
* Helper function for all the RasterPos functions.
*/
@ -533,9 +530,6 @@ _mesa_init_rastpos_dispatch(struct _glapi_table *disp)
}
#endif /* FEATURE_rastpos */
/**********************************************************************/
/** \name Initialization */
/**********************************************************************/

View File

@ -38,20 +38,9 @@
struct _glapi_table;
struct gl_context;
#if FEATURE_rastpos
extern void
_mesa_init_rastpos_dispatch(struct _glapi_table *disp);
#else /* FEATURE_rastpos */
static inline void
_mesa_init_rastpos_dispatch(struct _glapi_table *disp)
{
}
#endif /* FEATURE_rastpos */
extern void
_mesa_init_rastpos(struct gl_context *ctx);

View File

@ -50,8 +50,6 @@
#include "vbo/vbo.h"
#if FEATURE_rastpos
/**
* Our special drawing pipeline stage (replaces rasterization).
*/
@ -275,5 +273,3 @@ void st_init_rasterpos_functions(struct dd_function_table *functions)
{
functions->RasterPos = st_RasterPos;
}
#endif /* FEATURE_rastpos */

View File

@ -34,17 +34,7 @@
struct dd_function_table;
#if FEATURE_rastpos
extern void st_init_rasterpos_functions(struct dd_function_table *functions);
#else
static INLINE void
st_init_rasterpos_functions(struct dd_function_table *functions)
{
}
#endif /* FEATURE_rastpos */
#endif /* ST_CB_RASTERPOS_H */