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/texgen.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/texgen.h')
-rw-r--r-- | src/mesa/main/texgen.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/texgen.h b/src/mesa/main/texgen.h index 2224a937611..9ed80238363 100644 --- a/src/mesa/main/texgen.h +++ b/src/mesa/main/texgen.h @@ -35,11 +35,6 @@ struct _glapi_table; #if FEATURE_texgen -#define _MESA_INIT_TEXGEN_FUNCTIONS(driver, impl) \ - do { \ - (driver)->TexGen = impl ## TexGen; \ - } while (0) - extern void GLAPIENTRY _mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params ); @@ -68,8 +63,6 @@ _es_TexGenfv(GLenum coord, GLenum pname, const GLfloat *params); #else /* FEATURE_texgen */ -#define _MESA_INIT_TEXGEN_FUNCTIONS(driver, impl) do { } while (0) - static void _mesa_TexGenfv( GLenum coord, GLenum pname, const GLfloat *params ) { |