summaryrefslogtreecommitdiff
path: root/src/mesa/main/drawtex.h
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-09-13 13:51:52 +0800
committerChia-I Wu <olv@lunarg.com>2010-09-14 15:49:43 +0800
commitdb6273e0ddc5dbfcff27b8f75982bbf348810d31 (patch)
treef77c8ae94bfe2b10d6e5e4933292320a3d47bcd7 /src/mesa/main/drawtex.h
parent1c6992b873df6de36f7b8d203fc9d993fcebab9d (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/drawtex.h')
-rw-r--r--src/mesa/main/drawtex.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/main/drawtex.h b/src/mesa/main/drawtex.h
index 95f4ac86f0..d7d507566b 100644
--- a/src/mesa/main/drawtex.h
+++ b/src/mesa/main/drawtex.h
@@ -30,11 +30,6 @@
#if FEATURE_OES_draw_texture
-#define _MESA_INIT_DRAWTEX_FUNCTIONS(driver, impl) \
- do { \
- (driver)->DrawTex = impl ## DrawTex; \
- } while (0)
-
extern void GLAPIENTRY
_mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
@@ -59,10 +54,6 @@ _mesa_DrawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
extern void GLAPIENTRY
_mesa_DrawTexxv(const GLfixed *coords);
-#else /* FEATURE_OES_draw_texture */
-
-#define _MESA_INIT_DRAWTEX_FUNCTIONS(driver, impl) do { } while (0)
-
#endif /* FEATURE_OES_draw_texture */