diff options
author | Vasily Khoruzhick <[email protected]> | 2019-12-09 18:29:19 -0800 |
---|---|---|
committer | Vasily Khoruzhick <[email protected]> | 2020-01-10 01:13:47 +0000 |
commit | 044da65f52b1de20fce608f83a6313c86d62b5b8 (patch) | |
tree | 9e89308dadb143da12caaa357367acfae20c13de /src/gallium/drivers/lima/lima_screen.h | |
parent | a533d1d4c607543fc1e3ca427eba50e9602f6fe2 (diff) |
lima: add debug flag to disable tiling
Add debug flag to disable tiling. Note that it prevents lima from creating
tiled buffers, but it's still able to import them if modifier is specified
Reviewed-by: Andreas Baierl <[email protected]>
Reviewed-by: Erico Nunes <[email protected]>
Signed-off-by: Vasily Khoruzhick <[email protected]>
Diffstat (limited to 'src/gallium/drivers/lima/lima_screen.h')
-rw-r--r-- | src/gallium/drivers/lima/lima_screen.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/lima/lima_screen.h b/src/gallium/drivers/lima/lima_screen.h index 426f8e956c1..b75096bf983 100644 --- a/src/gallium/drivers/lima/lima_screen.h +++ b/src/gallium/drivers/lima/lima_screen.h @@ -39,6 +39,7 @@ #define LIMA_DEBUG_SHADERDB (1 << 3) #define LIMA_DEBUG_NO_BO_CACHE (1 << 4) #define LIMA_DEBUG_BO_CACHE (1 << 5) +#define LIMA_DEBUG_NO_TILING (1 << 6) extern uint32_t lima_debug; extern int lima_ctx_num_plb; |