diff options
author | Brian Paul <[email protected]> | 2004-01-20 23:55:45 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-20 23:55:45 +0000 |
commit | a999e809af97e32cc1198ca816dcacc735a0a4af (patch) | |
tree | 76ea168691cb5238e200dfcb007cf66c904f4ba6 /src/mesa/main/debug.h | |
parent | 4e713913fb88bc221eea1a18822cc782ca39af4d (diff) |
remove _mesa_check_driver_hooks() - it's really not too useful anymore
Diffstat (limited to 'src/mesa/main/debug.h')
-rw-r--r-- | src/mesa/main/debug.h | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/src/mesa/main/debug.h b/src/mesa/main/debug.h index 4d17771ce52..94d99c384bd 100644 --- a/src/mesa/main/debug.h +++ b/src/mesa/main/debug.h @@ -1,18 +1,8 @@ -/** - * \file debug.h - * Debugging functions. - * - * \if subset - * (No-op) - * - * \endif - */ - /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 6.1 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -32,6 +22,16 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/** + * \file debug.h + * Debugging functions. + * + * \if subset + * (No-op) + * + * \endif + */ + #ifndef _DEBUG_H #define _DEBUG_H @@ -43,7 +43,6 @@ 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( GLcontext *ctx ); -extern void _mesa_check_driver_hooks( GLcontext *ctx ); #else @@ -56,9 +55,6 @@ extern void _mesa_check_driver_hooks( GLcontext *ctx ); /** No-op */ #define _mesa_init_debug( c ) ((void)0) -/** No-op */ -#define _mesa_check_driver_hooks( c ) ((void)0) - #endif #endif |