summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2017-06-03 12:34:28 -0400
committerRob Clark <[email protected]>2017-06-07 12:32:00 -0400
commite26a7c1cf26da0c576577c11aa0d5768fd1c207f (patch)
tree4a1bf40ad81d9ea4958d7b50646b2118078c39a9 /src
parent613410c8fc1b9d6953c688b22283d940bcaec985 (diff)
freedreno: reshuffle FD_MESA_DEBUG bitmask
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/freedreno/freedreno_util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h
index a0e1334e788..6a47b25b090 100644
--- a/src/gallium/drivers/freedreno/freedreno_util.h
+++ b/src/gallium/drivers/freedreno/freedreno_util.h
@@ -76,9 +76,9 @@ enum adreno_stencil_op fd_stencil_op(unsigned op);
#define FD_DBG_SHADERDB 0x0800
#define FD_DBG_FLUSH 0x1000
#define FD_DBG_DEQP 0x2000
-#define FD_DBG_INORDER 0x8000
-#define FD_DBG_BSTAT 0x10000
-#define FD_DBG_NOGROW 0x20000
+#define FD_DBG_INORDER 0x4000
+#define FD_DBG_BSTAT 0x8000
+#define FD_DBG_NOGROW 0x10000
extern int fd_mesa_debug;
extern bool fd_binning_enabled;