mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-29 11:06:18 +00:00
a/vk: Name Vulkan objects
This commit is contained in:
parent
7cba92e933
commit
e67f9d7e52
|
@ -1238,6 +1238,9 @@ vk_create_device(struct vk_bundle *vk,
|
|||
}
|
||||
vk->vkGetDeviceQueue(vk->device, vk->queue_family_index, 0, &vk->queue);
|
||||
|
||||
// Need to do this after functions have been gotten.
|
||||
VK_NAME_OBJECT(vk, DEVICE, vk->device, "vk_bundle device");
|
||||
|
||||
return ret;
|
||||
|
||||
err_destroy:
|
||||
|
|
|
@ -307,6 +307,9 @@ vk_ic_allocate(struct vk_bundle *vk,
|
|||
if (ret != VK_SUCCESS) {
|
||||
break;
|
||||
}
|
||||
|
||||
VK_NAME_OBJECT(vk, IMAGE, out_vkic->images[i].handle, "vk_image_collection image");
|
||||
VK_NAME_OBJECT(vk, DEVICE_MEMORY, out_vkic->images[i].memory, "vk_image_collection device_memory");
|
||||
}
|
||||
|
||||
// Set the fields.
|
||||
|
@ -371,6 +374,10 @@ vk_ic_from_natives(struct vk_bundle *vk,
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
VK_NAME_OBJECT(vk, IMAGE, out_vkic->images[i].handle, "vk_image_collection image");
|
||||
VK_NAME_OBJECT(vk, DEVICE_MEMORY, out_vkic->images[i].memory, "vk_image_collection device_memory");
|
||||
|
||||
native_images[i].handle = buf;
|
||||
}
|
||||
// Set the fields.
|
||||
|
|
|
@ -69,6 +69,9 @@ vk_xf_readback_pool_try_create_new_frame(struct vk_bundle *vk, struct vk_image_r
|
|||
&memory, //
|
||||
&image); //
|
||||
|
||||
VK_NAME_OBJECT(vk, DEVICE_MEMORY, memory, "vk_image_readback_to_xf_pool device memory");
|
||||
VK_NAME_OBJECT(vk, IMAGE, image, "vk_image_readback_to_xf_pool image");
|
||||
|
||||
(void)res;
|
||||
|
||||
// Get layout of the image (including row pitch)
|
||||
|
|
|
@ -241,7 +241,6 @@ create_semaphore_and_native(struct vk_bundle *vk,
|
|||
return ret;
|
||||
}
|
||||
|
||||
|
||||
#if defined(XRT_GRAPHICS_SYNC_HANDLE_IS_FD)
|
||||
VkSemaphoreGetFdInfoKHR get_fd_info = {
|
||||
.sType = VK_STRUCTURE_TYPE_SEMAPHORE_GET_FD_INFO_KHR,
|
||||
|
|
Loading…
Reference in a new issue