svga: also dump SVGA3D_BUFFER surfaces in svga_screen_cache_dump()
Reviewed-by: Charmaine Lee <charmainel@vmware.com>
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user