radeon: Make debugging automaticaly increase logging verbosity for debug build.
authorPauli Nieminen <suokkos@gmail.com>
Thu, 4 Feb 2010 21:42:39 +0000 (23:42 +0200)
committerPauli Nieminen <suokkos@gmail.com>
Thu, 4 Feb 2010 21:59:20 +0000 (23:59 +0200)
DEBUG preprocessor macro is set by configure script when
--enable-debug is passed for configure. Radeon then just
increase debugging verbosity if DEBUG is set in compile
time.

src/mesa/drivers/dri/radeon/radeon_debug.h

index 26da31c..ef8b967 100644 (file)
@@ -47,7 +47,11 @@ typedef enum radeon_debug_levels {
  * errors.
  */
 #ifndef RADEON_DEBUG_LEVEL
-#define RADEON_DEBUG_LEVEL RADEON_VERBOSE
+# ifdef DEBUG
+#  define RADEON_DEBUG_LEVEL RADEON_TRACE
+# else
+#  define RADEON_DEBUG_LEVEL RADEON_VERBOSE
+# endif
 #endif
 
 typedef enum radeon_debug_types {