diff options
author | Brian Paul <[email protected]> | 2013-04-03 10:23:57 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-04-03 11:02:47 -0600 |
commit | ac114c682413065a5b8baa678733555e94e43120 (patch) | |
tree | 61764015469959c8917abb4ae2672a61df22b9a0 /src/gallium/drivers/svga/svga_screen.h | |
parent | a69efa9482d7d4dee476a50b3788544ba9b14a50 (diff) |
svga: add new memory-used HUD query
To track the amount of memory used by all pipe_resources (textures
and buffers).
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_screen.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_screen.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_screen.h b/src/gallium/drivers/svga/svga_screen.h index d7d2c756359..77b552af6b0 100644 --- a/src/gallium/drivers/svga/svga_screen.h +++ b/src/gallium/drivers/svga/svga_screen.h @@ -73,6 +73,9 @@ struct svga_screen } depth; struct svga_host_surface_cache cache; + + /** Memory used by all resources (buffers and surfaces) */ + uint64_t total_resource_bytes; }; #ifndef DEBUG |