Mesa (master): i965: Expand INTEL_DEBUG to uint64_t.

Matt Turner mattst88 at kemper.freedesktop.org
Tue Apr 15 17:30:09 UTC 2014


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

Author: Matt Turner <mattst88 at gmail.com>
Date:   Fri Apr 11 22:27:31 2014 -0700

i965: Expand INTEL_DEBUG to uint64_t.

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/intel_debug.c |    2 +-
 src/mesa/drivers/dri/i965/intel_debug.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/intel_debug.c b/src/mesa/drivers/dri/i965/intel_debug.c
index 77f410a..dc74202 100644
--- a/src/mesa/drivers/dri/i965/intel_debug.c
+++ b/src/mesa/drivers/dri/i965/intel_debug.c
@@ -33,7 +33,7 @@
 #include "intel_debug.h"
 #include "utils.h"
 
-int INTEL_DEBUG = 0;
+uint64_t INTEL_DEBUG = 0;
 
 static const struct dri_debug_control debug_control[] = {
    { "tex",   DEBUG_TEXTURE},
diff --git a/src/mesa/drivers/dri/i965/intel_debug.h b/src/mesa/drivers/dri/i965/intel_debug.h
index c01fbb3..d4f1666 100644
--- a/src/mesa/drivers/dri/i965/intel_debug.h
+++ b/src/mesa/drivers/dri/i965/intel_debug.h
@@ -31,7 +31,7 @@
  * list of debugging flags, as well as some macros for handling them.
  */
 
-extern int INTEL_DEBUG;
+extern uint64_t INTEL_DEBUG;
 
 #define DEBUG_TEXTURE	  0x1
 #define DEBUG_STATE	  0x2




More information about the mesa-commit mailing list