diff options
author | Oliver McFadden <[email protected]> | 2012-09-11 09:14:31 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:56:46 +0300 |
commit | 24c3d16f3b2bcfa1cff6836ffaf136333893f1e3 (patch) | |
tree | dfb6ad23294ab92f25e04bd3b758110b8695c936 /src/mesa/main | |
parent | 53514b032626439a1824e8ea96f1c4ba45e8e8d7 (diff) |
mesa: remove FEATURE_drawpix define.
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/drawpix.c | 6 | ||||
-rw-r--r-- | src/mesa/main/drawpix.h | 11 | ||||
-rw-r--r-- | src/mesa/main/mfeatures.h | 1 |
3 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index bd9837fdd9a..b5ab2cbeb7a 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -39,9 +39,6 @@ #include "fbobject.h" -#if FEATURE_drawpix - - /* * Execute glDrawPixels */ @@ -379,6 +376,3 @@ _mesa_init_drawpix_dispatch(struct _glapi_table *disp) SET_CopyPixels(disp, _mesa_CopyPixels); SET_DrawPixels(disp, _mesa_DrawPixels); } - - -#endif /* FEATURE_drawpix */ diff --git a/src/mesa/main/drawpix.h b/src/mesa/main/drawpix.h index 13efba5f8ff..971d258f181 100644 --- a/src/mesa/main/drawpix.h +++ b/src/mesa/main/drawpix.h @@ -32,19 +32,8 @@ struct _glapi_table; -#if FEATURE_drawpix - extern void _mesa_init_drawpix_dispatch(struct _glapi_table *disp); -#else /* FEATURE_drawpix */ - -static inline void -_mesa_init_drawpix_dispatch(struct _glapi_table *disp) -{ -} - -#endif /* FEATURE_drawpix */ - #endif /* DRAWPIX_H */ diff --git a/src/mesa/main/mfeatures.h b/src/mesa/main/mfeatures.h index 2742e5a160e..9695e38e8da 100644 --- a/src/mesa/main/mfeatures.h +++ b/src/mesa/main/mfeatures.h @@ -84,7 +84,6 @@ #define FEATURE_remap_table 0 #endif -#define FEATURE_drawpix FEATURE_GL #define FEATURE_evaluators FEATURE_GL #define FEATURE_feedback FEATURE_GL #define FEATURE_pixel_transfer FEATURE_GL |