summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/svga/svga_resource_buffer.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-04-03 10:23:57 -0600
committerBrian Paul <brianp@vmware.com>2013-04-03 11:02:47 -0600
commitac114c682413065a5b8baa678733555e94e43120 (patch)
tree61764015469959c8917abb4ae2672a61df22b9a0 /src/gallium/drivers/svga/svga_resource_buffer.h
parenta69efa9482d7d4dee476a50b3788544ba9b14a50 (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 <jfonseca@vmware.com>
Diffstat (limited to 'src/gallium/drivers/svga/svga_resource_buffer.h')
-rw-r--r--src/gallium/drivers/svga/svga_resource_buffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_resource_buffer.h b/src/gallium/drivers/svga/svga_resource_buffer.h
index ee12acf6971..b431d7b5968 100644
--- a/src/gallium/drivers/svga/svga_resource_buffer.h
+++ b/src/gallium/drivers/svga/svga_resource_buffer.h
@@ -177,6 +177,8 @@ struct svga_buffer
* a context. It is only valid if the dma.pending is set above.
*/
struct list_head head;
+
+ unsigned size; /**< Approximate size in bytes */
};