diff options
Diffstat (limited to 'src/mesa/main/debug.c')
-rw-r--r-- | src/mesa/main/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 83e3a8b86b9..62c3e1fc34b 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa/main/debug.c @@ -1,7 +1,7 @@ #include "mtypes.h" #include "debug.h" -void gl_print_state( const char *msg, GLuint state ) +void _mesa_print_state( const char *msg, GLuint state ) { fprintf(stderr, "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", @@ -35,7 +35,7 @@ void gl_print_state( const char *msg, GLuint state ) } -void gl_print_enable_flags( const char *msg, GLuint flags ) +void _mesa_print_enable_flags( const char *msg, GLuint flags ) { fprintf(stderr, "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", @@ -64,7 +64,7 @@ void gl_print_enable_flags( const char *msg, GLuint flags ) (flags & ENABLE_RESCALE) ? "rescale, " : ""); } -void gl_print_tri_caps( const char *name, GLuint flags ) +void _mesa_print_tri_caps( const char *name, GLuint flags ) { fprintf(stderr, "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", |