diff options
author | Rob Clark <[email protected]> | 2017-01-02 17:22:13 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2017-01-10 19:40:00 -0500 |
commit | 99e9dca149e2484c9472a0518eee5e2099bdb251 (patch) | |
tree | 7f0def38b6df61092e72198c8b31c783b275ed0a /src/gallium/drivers/freedreno/freedreno_util.h | |
parent | a43f3b895c1906f92b671b1afe7859125623d5f7 (diff) |
freedreno: add "nogrow" debug param
Sometimes it is useful to disable the "growable" cmdstream buffers for
debugging. (See 419a154d in libdrm)
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h index c699f7badff..08bc5d7ba4a 100644 --- a/src/gallium/drivers/freedreno/freedreno_util.h +++ b/src/gallium/drivers/freedreno/freedreno_util.h @@ -79,6 +79,7 @@ enum adreno_stencil_op fd_stencil_op(unsigned op); #define FD_DBG_NIR 0x4000 #define FD_DBG_REORDER 0x8000 #define FD_DBG_BSTAT 0x10000 +#define FD_DBG_NOGROW 0x20000 extern int fd_mesa_debug; extern bool fd_binning_enabled; |