diff options
author | Rob Clark <[email protected]> | 2014-02-03 11:28:30 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-02-03 18:26:53 -0500 |
commit | 1b886078dbff593ceb23b05b3ce78a3bb3cbcb94 (patch) | |
tree | 2dc8aa5fdcbc8ec2b3ccac10402714bee8d28bc7 /src/gallium/drivers/freedreno/freedreno_util.h | |
parent | 554f1ac00c43f4503b923e1a129c0039468dcb82 (diff) |
freedreno: enabling binning and opt by default
Hw binning pass doesn't seem to have broken anything. And optimizing
compiler fixes a lot of shaders and doesn't seem to break anything. So
re-org slightly FD_MESA_DEBUG params and make both hw binning and
optimizer enabled by default.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_util.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_util.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h index 43026c55754..356f4165792 100644 --- a/src/gallium/drivers/freedreno/freedreno_util.h +++ b/src/gallium/drivers/freedreno/freedreno_util.h @@ -61,11 +61,10 @@ enum adreno_stencil_op fd_stencil_op(unsigned op); #define FD_DBG_DIRECT 0x0020 #define FD_DBG_DBYPASS 0x0040 #define FD_DBG_FRAGHALF 0x0080 -#define FD_DBG_BINNING 0x0100 -#define FD_DBG_DBINNING 0x0200 -#define FD_DBG_OPTIMIZE 0x0400 -#define FD_DBG_OPTMSGS 0x0800 -#define FD_DBG_OPTDUMP 0x1000 +#define FD_DBG_NOBIN 0x0100 +#define FD_DBG_NOOPT 0x0200 +#define FD_DBG_OPTMSGS 0x0400 +#define FD_DBG_OPTDUMP 0x0800 extern int fd_mesa_debug; extern bool fd_binning_enabled; |