Mesa (master): i915g: Ifdef out debug code on non-debug builds

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Fri Jul 23 03:32:33 UTC 2010


Module: Mesa
Branch: master
Commit: 4eaa6710526469b56875ff9c1ec07e673169386e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4eaa6710526469b56875ff9c1ec07e673169386e

Author: Jakob Bornecrantz <wallbraker at gmail.com>
Date:   Thu Jul 22 20:00:28 2010 -0700

i915g: Ifdef out debug code on non-debug builds

---

 src/gallium/drivers/i915/i915_debug.h |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/i915/i915_debug.h b/src/gallium/drivers/i915/i915_debug.h
index 8aa09f9..fa60799 100644
--- a/src/gallium/drivers/i915/i915_debug.h
+++ b/src/gallium/drivers/i915/i915_debug.h
@@ -47,6 +47,7 @@ struct i915_winsys_batchbuffer;
 
 extern unsigned i915_debug;
 
+#ifdef DEBUG
 static INLINE boolean
 I915_DBG_ON(unsigned flags)
 {
@@ -64,6 +65,10 @@ I915_DBG(unsigned flags, const char *fmt, ...)
       va_end(args);
    }
 }
+#else
+#define I915_DBG_ON(flags) (0)
+static INLINE void I915_DBG(unsigned flags, const char *fmt, ...) {}
+#endif
 
 void i915_debug_init(struct i915_screen *i915);
 




More information about the mesa-commit mailing list