Module: Mesa Branch: master Commit: 903afc370fb925ce637c90d694ef1e4052a1a80f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=903afc370fb925ce637c90d694ef1e4052a1a80f
Author: Brian Paul <[email protected]> Date: Fri Mar 4 15:58:02 2016 -0700 svga: also dump SVGA3D_BUFFER surfaces in svga_screen_cache_dump() Reviewed-by: Charmaine Lee <[email protected]> --- src/gallium/drivers/svga/svga_screen_cache.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/svga/svga_screen_cache.c b/src/gallium/drivers/svga/svga_screen_cache.c index 5b44129..321c564 100644 --- a/src/gallium/drivers/svga/svga_screen_cache.c +++ b/src/gallium/drivers/svga/svga_screen_cache.c @@ -563,8 +563,14 @@ svga_screen_cache_dump(const struct svga_screen *svgascreen) struct svga_host_surface_cache_entry *entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, bucket_head); - if (entry->key.format != 37) { - debug_printf(" %u x %u x %u format %u\n", + if (entry->key.format == SVGA3D_BUFFER) { + debug_printf(" %p: buffer %u bytes\n", + entry->handle, + entry->key.size.width); + } + else { + debug_printf(" %p: %u x %u x %u format %u\n", + entry->handle, entry->key.size.width, entry->key.size.height, entry->key.size.depth, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
