render/vulkan: drop outdated comments

This commit is contained in:
Simon Ser 2022-11-04 14:29:54 +01:00
parent 2ac2835a1f
commit 3b75ab97e2
1 changed files with 0 additions and 3 deletions

View File

@ -13,7 +13,6 @@
struct wlr_vk_descriptor_pool; struct wlr_vk_descriptor_pool;
// Central vulkan state that should only be needed once per compositor.
struct wlr_vk_instance { struct wlr_vk_instance {
VkInstance instance; VkInstance instance;
VkDebugUtilsMessengerEXT messenger; VkDebugUtilsMessengerEXT messenger;
@ -31,8 +30,6 @@ struct wlr_vk_instance *vulkan_instance_create(bool debug);
void vulkan_instance_destroy(struct wlr_vk_instance *ini); void vulkan_instance_destroy(struct wlr_vk_instance *ini);
// Logical vulkan device state. // Logical vulkan device state.
// Ownership can be shared by multiple renderers, reference counted
// with `renderers`.
struct wlr_vk_device { struct wlr_vk_device {
struct wlr_vk_instance *instance; struct wlr_vk_instance *instance;