diff options
author | Samuel Pitoiset <[email protected]> | 2017-01-23 21:44:45 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-01-25 15:19:21 +0100 |
commit | cff199ceb7c68db51efc85f34cd45ccede790d4a (patch) | |
tree | a1e2b3390ab294abbeb2a8237c0276c657f567cd /src/gallium/drivers/radeon/r600_query.h | |
parent | 56495080ed910c8fb7cd02aa5e3b14e0fb823c6d (diff) |
gallium/radeon: add a new HUD query for the number of mapped buffers
Useful when debugging applications which map a ton of buffers
and also because we used to run into Linux's limit on the number
of simultaneous mmap() calls.
v2: - update the commit message
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_query.h')
-rw-r--r-- | src/gallium/drivers/radeon/r600_query.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_query.h b/src/gallium/drivers/radeon/r600_query.h index 1e4554d0091..20856a5b2ea 100644 --- a/src/gallium/drivers/radeon/r600_query.h +++ b/src/gallium/drivers/radeon/r600_query.h @@ -60,6 +60,7 @@ enum { R600_QUERY_MAPPED_VRAM, R600_QUERY_MAPPED_GTT, R600_QUERY_BUFFER_WAIT_TIME, + R600_QUERY_NUM_MAPPED_BUFFERS, R600_QUERY_NUM_GFX_IBS, R600_QUERY_NUM_SDMA_IBS, R600_QUERY_NUM_BYTES_MOVED, |