Mesa (main): i915g: Allow use of I915_DEBUG= options on non-DEBUG builds.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Jun 28 22:17:31 UTC 2021


Module: Mesa
Branch: main
Commit: 005b0f015b27ed11e68ddc7344f6e825ba3007eb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=005b0f015b27ed11e68ddc7344f6e825ba3007eb

Author: Emma Anholt <emma at anholt.net>
Date:   Sun Jun 27 13:46:24 2021 -0700

i915g: Allow use of I915_DEBUG= options on non-DEBUG builds.

All the checks should be cheap, no need making things harder to debug.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11617>

---

 src/gallium/drivers/i915/i915_debug.h | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/gallium/drivers/i915/i915_debug.h b/src/gallium/drivers/i915/i915_debug.h
index 08f509f3efa..30b0f9c979a 100644
--- a/src/gallium/drivers/i915/i915_debug.h
+++ b/src/gallium/drivers/i915/i915_debug.h
@@ -47,7 +47,6 @@ struct i915_winsys_batchbuffer;
 
 extern unsigned i915_debug;
 
-#ifdef DEBUG
 static inline bool
 I915_DBG_ON(unsigned flags)
 {
@@ -65,13 +64,6 @@ 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