diff options
author | Jason Ekstrand <[email protected]> | 2020-01-17 22:57:35 -0600 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-20 22:08:52 +0000 |
commit | 1ec84bd2081e65b2edb489507e0525f98efd3164 (patch) | |
tree | 0e35649b4882941b47b080088107c83c3343fdc2 /src/intel/vulkan/anv_util.c | |
parent | cb6ea7704574475c56c930e18363070be6073cc1 (diff) |
anv: Take a device in anv_perf_warn
Reviewed-by: Lionel Landwerlin <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3461>
Diffstat (limited to 'src/intel/vulkan/anv_util.c')
-rw-r--r-- | src/intel/vulkan/anv_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_util.c b/src/intel/vulkan/anv_util.c index 1159ccecc6a..58d2efcc51f 100644 --- a/src/intel/vulkan/anv_util.c +++ b/src/intel/vulkan/anv_util.c @@ -50,7 +50,7 @@ anv_loge_v(const char *format, va_list va) } void anv_printflike(6, 7) -__anv_perf_warn(struct anv_instance *instance, const void *object, +__anv_perf_warn(struct anv_device *device, const void *object, VkDebugReportObjectTypeEXT type, const char *file, int line, const char *format, ...) { @@ -64,7 +64,7 @@ __anv_perf_warn(struct anv_instance *instance, const void *object, snprintf(report, sizeof(report), "%s: %s", file, buffer); - vk_debug_report(&instance->debug_report_callbacks, + vk_debug_report(&device->physical->instance->debug_report_callbacks, VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT, type, (uint64_t) (uintptr_t) object, |