anv/sparse: remove unused dump_vk_sparse_memory_bind()

This went unused a while ago. If we decide we want it again we can
just add it back.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28724>
This commit is contained in:
Paulo Zanoni
2024-04-10 17:17:33 -07:00
committed by Marge Bot
parent ba3b1c2d12
commit 0c1dbfe899
-19
View File
@@ -63,25 +63,6 @@ dump_anv_vm_bind(struct anv_device *device,
bind->address, bind->size, bind->bo_offset);
}
static void
dump_vk_sparse_memory_bind(const VkSparseMemoryBind *bind)
{
if (!INTEL_DEBUG(DEBUG_SPARSE))
return;
if (bind->memory != VK_NULL_HANDLE) {
struct anv_bo *bo = anv_device_memory_from_handle(bind->memory)->bo;
sparse_debug("bo:%04u ", bo->gem_handle);
} else {
sparse_debug("bo:---- ");
}
sparse_debug("res_offset:%08"PRIx64" size:%08"PRIx64" "
"mem_offset:%08"PRIx64" flags:0x%08x\n",
bind->resourceOffset, bind->size, bind->memoryOffset,
bind->flags);
}
static void
dump_anv_image(struct anv_image *i)
{