dri: move __driUtilMessage to xmlconfig.c
authorGeorge Sapountzis <gsapountzis@gmail.com>
Thu, 3 Nov 2011 12:19:41 +0000 (14:19 +0200)
committerGeorge Sapountzis <gsapountzis@gmail.com>
Fri, 4 Nov 2011 21:33:05 +0000 (23:33 +0200)
__driUtilMessage seems to have fallen out of favor and is only used by xmlconfig.c now

src/mesa/drivers/dri/common/utils.c
src/mesa/drivers/dri/common/utils.h
src/mesa/drivers/dri/common/xmlconfig.c
src/mesa/drivers/dri/radeon/radeon_screen.c

index d8656a784a16e392cde9da8140de5a90ed0bcdb4..328f56b50d474b668d306a0fb0460940c422884f 100644 (file)
 #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  )
index c2302de5d40eabb6604de94ea824cd645cdb62f5..9d6eb3037c63a457745bb5c4e0589c19f6d6ac21 100644 (file)
 #include <GL/internal/dri_interface.h>
 #include "main/context.h"
 
-typedef struct __DRIutilversionRec2    __DRIutilversion2;
-
 struct dri_debug_control {
     const char * string;
     unsigned     flag;
 };
 
-extern void
-__driUtilMessage(const char *f, ...);
-
 extern unsigned driParseDebugString( const char * debug,
     const struct dri_debug_control * control );
 
index 12dd31bb1621982c9b217c00a6f26d2c7df6e6bc..6d1d5ec6109b6fa3178ff979e67cab47cf27b4fb 100644 (file)
@@ -420,6 +420,28 @@ static GLboolean checkValue (const driOptionValue *v, const driOptionInfo *info)
     return GL_FALSE;
 }
 
+/**
+ * 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.
+ */
+static 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");
+    }
+}
+
 /** \brief Output a warning message. */
 #define XML_WARNING1(msg) do {\
     __driUtilMessage ("Warning in %s line %d, column %d: "msg, data->name, \
index cd85595ebfea429b5e86d876b272bd5f347e141e..3e5f46b483dadbe11aa5ce84b75eec3fda0e127e 100644 (file)
@@ -1060,8 +1060,7 @@ radeonCreateScreen2(__DRIscreen *sPriv)
    /* Allocate the private area */
    screen = (radeonScreenPtr) CALLOC( sizeof(*screen) );
    if ( !screen ) {
-      __driUtilMessage("%s: Could not allocate memory for screen structure",
-                      __FUNCTION__);
+      fprintf(stderr, "%s: Could not allocate memory for screen structure", __FUNCTION__);
       fprintf(stderr, "leaving here\n");
       return NULL;
    }