diff options
author | Paul Berry <[email protected]> | 2012-10-30 14:03:28 -0700 |
---|---|---|
committer | Paul Berry <[email protected]> | 2012-11-06 12:57:39 -0800 |
commit | 5708e2711366e4dd1f19275c943b04706fd9c633 (patch) | |
tree | 2d937547be5bab79c2024924bd0d4d9dc82c2ca4 /src/mesa/main/texgen.c | |
parent | 0d61f879a1f2e6bb37368731a29d5267e1c25195 (diff) |
dispatch: Remove a few FEATURE_ES1 conditionals.
This allows the GLES1.1 dispatch sanity test to be run on all builds,
even builds that do not include GLES1 support.
Reviewed-by: Jordan Justen <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/texgen.c')
-rw-r--r-- | src/mesa/main/texgen.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/texgen.c b/src/mesa/main/texgen.c index c5a87864464..3ce413d5c98 100644 --- a/src/mesa/main/texgen.c +++ b/src/mesa/main/texgen.c @@ -212,7 +212,6 @@ _mesa_TexGend(GLenum coord, GLenum pname, GLdouble param ) _mesa_TexGenfv( coord, pname, p ); } -#if FEATURE_ES1 void GLAPIENTRY _es_GetTexGenfv(GLenum coord, GLenum pname, GLfloat *params) @@ -250,7 +249,6 @@ _es_TexGenfv(GLenum coord, GLenum pname, const GLfloat *params) _mesa_TexGenfv(GL_R, pname, params); } -#endif static void GLAPIENTRY _mesa_TexGendv(GLenum coord, GLenum pname, const GLdouble *params ) |