diff options
author | Chia-I Wu <[email protected]> | 2010-09-13 13:51:52 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-09-14 15:49:43 +0800 |
commit | db6273e0ddc5dbfcff27b8f75982bbf348810d31 (patch) | |
tree | f77c8ae94bfe2b10d6e5e4933292320a3d47bcd7 /src/mesa/main/drawpix.h | |
parent | 1c6992b873df6de36f7b8d203fc9d993fcebab9d (diff) |
mesa: Remove unused _MESA_INIT_*_FUNCTIONS.
They were intended to be used to build OpenGL ES only DRI drivers, but
that never happened.
Diffstat (limited to 'src/mesa/main/drawpix.h')
-rw-r--r-- | src/mesa/main/drawpix.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/main/drawpix.h b/src/mesa/main/drawpix.h index 8ffb1a6d884..1f95ff5294d 100644 --- a/src/mesa/main/drawpix.h +++ b/src/mesa/main/drawpix.h @@ -31,20 +31,11 @@ #if FEATURE_drawpix -#define _MESA_INIT_DRAWPIX_FUNCTIONS(driver, impl) \ - do { \ - (driver)->DrawPixels = impl ## DrawPixels; \ - (driver)->CopyPixels = impl ## CopyPixels; \ - (driver)->Bitmap = impl ## Bitmap; \ - } while (0) - extern void _mesa_init_drawpix_dispatch(struct _glapi_table *disp); #else /* FEATURE_drawpix */ -#define _MESA_INIT_DRAWPIX_FUNCTIONS(driver, impl) do { } while (0) - static INLINE void _mesa_init_drawpix_dispatch(struct _glapi_table *disp) { |