mesa: remove FEATURE_pixel_transfer 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:17:44 +03:00
parent 26a26e9992
commit 0ba82f9108
3 changed files with 0 additions and 30 deletions
-1
View File
@@ -84,7 +84,6 @@
#define FEATURE_remap_table 0
#endif
#define FEATURE_pixel_transfer FEATURE_GL
#define FEATURE_queryobj FEATURE_GL
#define FEATURE_rastpos FEATURE_GL
#define FEATURE_texture_fxt1 FEATURE_GL
-6
View File
@@ -40,9 +40,6 @@
#include "main/dispatch.h"
#if FEATURE_pixel_transfer
/**********************************************************************/
/***** glPixelZoom *****/
/**********************************************************************/
@@ -670,9 +667,6 @@ _mesa_init_pixel_dispatch(struct _glapi_table *disp)
}
#endif /* FEATURE_pixel_transfer */
/**********************************************************************/
/***** Initialization *****/
/**********************************************************************/
-23
View File
@@ -41,8 +41,6 @@ struct _glapi_table;
struct gl_context;
#if FEATURE_pixel_transfer
extern void GLAPIENTRY
_mesa_PixelTransferf(GLenum pname, GLfloat param);
@@ -52,27 +50,6 @@ _mesa_update_pixel( struct gl_context *ctx, GLuint newstate );
extern void
_mesa_init_pixel_dispatch( struct _glapi_table * disp );
#else /* FEATURE_pixel_transfer */
static inline void GLAPIENTRY
_mesa_PixelTransferf(GLenum pname, GLfloat param)
{
}
static inline void
_mesa_update_pixel(struct gl_context *ctx, GLuint newstate)
{
}
static inline void
_mesa_init_pixel_dispatch(struct _glapi_table *disp)
{
}
#endif /* FEATURE_pixel_transfer */
extern void
_mesa_init_pixel( struct gl_context * ctx );