diff options
author | Brian Paul <[email protected]> | 2012-09-22 18:45:33 -0600 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-10-16 14:57:20 -0700 |
commit | 99940eef48980b795b10e43ac388b7435b8defbc (patch) | |
tree | 968fb41e8c9deb635e617311f9b3fd8e2d2e09a3 /src/mesa/main/light.h | |
parent | 198fa6452bf4cb7e5468263af5447932537c5314 (diff) |
mesa: remove #if _HAVE_FULL_GL checks
This is basically more of the "remove FEATURE_x" clean-up.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/light.h')
-rw-r--r-- | src/mesa/main/light.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/light.h b/src/mesa/main/light.h index c751d6d6bd4..2e6a5003ece 100644 --- a/src/mesa/main/light.h +++ b/src/mesa/main/light.h @@ -42,7 +42,6 @@ extern void GLAPIENTRY _mesa_ProvokingVertexEXT(GLenum mode); -#if _HAVE_FULL_GL extern void GLAPIENTRY _mesa_ColorMaterial( GLenum face, GLenum mode ); @@ -108,14 +107,4 @@ extern void _mesa_free_lighting_data( struct gl_context *ctx ); extern void _mesa_allow_light_in_model( struct gl_context *ctx, GLboolean flag ); -#else -#define _mesa_update_color_material( c, r ) ((void)0) -#define _mesa_material_bitmask( c, f, p, l, s ) 0 -#define _mesa_init_lighting( c ) ((void)0) -#define _mesa_free_lighting_data( c ) ((void)0) -#define _mesa_update_lighting( c ) ((void)0) -#define _mesa_update_tnl_spaces( c, n ) ((void)0) -#define GET_SHINE_TAB_ENTRY( table, dp, result ) ((result)=0) -#endif - #endif |