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/debug.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/debug.h')
-rw-r--r-- | src/mesa/main/debug.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mesa/main/debug.h b/src/mesa/main/debug.h index bc64a83bbac..6bc536591ac 100644 --- a/src/mesa/main/debug.h +++ b/src/mesa/main/debug.h @@ -42,27 +42,12 @@ struct gl_context; struct gl_texture_image; -#if _HAVE_FULL_GL - extern void _mesa_print_tri_caps( const char *name, GLuint flags ); extern void _mesa_print_enable_flags( const char *msg, GLuint flags ); extern void _mesa_print_state( const char *msg, GLuint state ); extern void _mesa_print_info( void ); extern void _mesa_init_debug( struct gl_context *ctx ); -#else - -/** No-op */ -#define _mesa_print_state( m, s ) ((void)0) - -/** No-op */ -#define _mesa_print_info() ((void)0) - -/** No-op */ -#define _mesa_init_debug( c ) ((void)0) - -#endif - extern void _mesa_write_renderbuffer_image(const struct gl_renderbuffer *rb); |