vulkan: Use vk_object_base::type for debug_report

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8676>
This commit is contained in:
Jason Ekstrand
2021-01-28 17:20:24 -06:00
committed by Marge Bot
parent c41eaf0add
commit 41318a5819
8 changed files with 39 additions and 42 deletions

View File

@@ -64,11 +64,9 @@ __anv_perf_warn(struct anv_device *device,
snprintf(report, sizeof(report), "%s: %s", file, buffer);
VkObjectType object_type = object ? object->type : VK_OBJECT_TYPE_UNKNOWN;
vk_debug_report(&device->physical->instance->vk.debug_report,
VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT,
object_type, (uint64_t)(uintptr_t)object,
line, 0, "anv", report);
object, line, 0, "anv", report);
mesa_logw("%s:%d: PERF: %s", file, line, buffer);
}
@@ -93,11 +91,9 @@ __vk_errorv(struct anv_instance *instance,
}
if (instance) {
VkObjectType object_type = object ? object->type : VK_OBJECT_TYPE_UNKNOWN;
vk_debug_report(&instance->vk.debug_report,
VK_DEBUG_REPORT_ERROR_BIT_EXT,
object_type, (uint64_t)(uintptr_t)object,
line, 0, "anv", report);
object, line, 0, "anv", report);
}
mesa_loge("%s", report);