1 /* 2 * Copyright © 2021 Collabora Ltd. 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #ifndef PANVK_WSI_H 7 #define PANVK_WSI_H 8 9 #include <vulkan/vulkan_core.h> 10 11 struct panvk_physical_device; 12 13 VkResult panvk_wsi_init(struct panvk_physical_device *physical_device); 14 void panvk_wsi_finish(struct panvk_physical_device *physical_device); 15 16 #endif 17