diff options
author | Rob Clark <[email protected]> | 2017-04-07 10:02:53 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2017-04-14 12:46:12 -0400 |
commit | 0b613c20aa9675a2fc434742c1eed0efb572aa01 (patch) | |
tree | 252e6bcded9882340d3c7b40809c931eadccc35b /src/gallium/drivers/freedreno/freedreno_util.h | |
parent | b5cc88af5ecfc4872e2344832d2a7280cedcf010 (diff) |
freedreno: enable draw/batch reordering by default
Probably should have flipped the switch a long time ago, since it
doesn't seem to cause any problems and is a nice perf boost in a number
of cases.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h index 08bc5d7ba4a..a9b38c93759 100644 --- a/src/gallium/drivers/freedreno/freedreno_util.h +++ b/src/gallium/drivers/freedreno/freedreno_util.h @@ -77,7 +77,7 @@ enum adreno_stencil_op fd_stencil_op(unsigned op); #define FD_DBG_FLUSH 0x1000 #define FD_DBG_DEQP 0x2000 #define FD_DBG_NIR 0x4000 -#define FD_DBG_REORDER 0x8000 +#define FD_DBG_INORDER 0x8000 #define FD_DBG_BSTAT 0x10000 #define FD_DBG_NOGROW 0x20000 |