diff options
author | Marek Olšák <[email protected]> | 2013-03-05 01:15:45 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-03-11 13:44:46 +0100 |
commit | e4e655fd1173fbf7f8cf734217b10e8c3695964e (patch) | |
tree | d971cd6bf88c5575ab21f7c29d952fee18ceb642 /src/gallium/drivers/r600/r600_pipe.h | |
parent | 4b69c1a92d4e1a03377a91548e0a99c3cf3dfea1 (diff) |
r600g: add debug options disabling various copy-buffer-related features
This will be invaluable for debugging and bug reports.
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 7e0f242051d..285d45fd371 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -249,6 +249,9 @@ typedef boolean (*r600g_dma_blit_t)(struct pipe_context *ctx, /* features */ #define DBG_NO_HYPERZ (1 << 16) #define DBG_NO_LLVM (1 << 17) +#define DBG_NO_CP_DMA (1 << 18) +#define DBG_NO_ASYNC_DMA (1 << 19) +#define DBG_NO_DISCARD_RANGE (1 << 20) struct r600_tiling_info { unsigned num_channels; |