diff options
author | George Sapountzis <[email protected]> | 2011-11-03 14:19:41 +0200 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2011-11-04 23:33:05 +0200 |
commit | ceda4da8573cca85e02d0e7c2db41f9151683321 (patch) | |
tree | 970a8c07aa2f8ded63ef81c8e8c2620c7e83bc16 /src/mesa/drivers/dri/common/utils.c | |
parent | 78c076e6548f0bb44758d89ec434bcfddd902939 (diff) |
dri: move __driUtilMessage to xmlconfig.c
__driUtilMessage seems to have fallen out of favor and is only used by xmlconfig.c now
Diffstat (limited to 'src/mesa/drivers/dri/common/utils.c')
-rw-r--r-- | src/mesa/drivers/dri/common/utils.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mesa/drivers/dri/common/utils.c b/src/mesa/drivers/dri/common/utils.c index d8656a784a1..328f56b50d4 100644 --- a/src/mesa/drivers/dri/common/utils.c +++ b/src/mesa/drivers/dri/common/utils.c @@ -37,29 +37,6 @@ #include "utils.h" -/** - * Print message to \c stderr if the \c LIBGL_DEBUG environment variable - * is set. - * - * Is called from the drivers. - * - * \param f \c printf like format string. - */ -void -__driUtilMessage(const char *f, ...) -{ - va_list args; - - if (getenv("LIBGL_DEBUG")) { - fprintf(stderr, "libGL: "); - va_start(args, f); - vfprintf(stderr, f, args); - va_end(args); - fprintf(stderr, "\n"); - } -} - - unsigned driParseDebugString( const char * debug, const struct dri_debug_control * control ) |