wsi/wayland: only finish() a successfully init()ed display
[mesa.git] / src / vulkan / wsi / wsi_common_private.h
1 /*
2 * Copyright © 2017 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23 #ifndef WSI_COMMON_PRIVATE_H
24 #define WSI_COMMON_PRIVATE_H
25
26 #include "wsi_common.h"
27
28 struct wsi_image {
29 VkImage image;
30 VkDeviceMemory memory;
31
32 struct {
33 VkBuffer buffer;
34 VkDeviceMemory memory;
35 VkCommandBuffer *blit_cmd_buffers;
36 } prime;
37
38 uint64_t drm_modifier;
39 int num_planes;
40 uint32_t sizes[4];
41 uint32_t offsets[4];
42 uint32_t row_pitches[4];
43 int fds[4];
44 };
45
46 struct wsi_swapchain {
47 const struct wsi_device *wsi;
48
49 VkDevice device;
50 VkAllocationCallbacks alloc;
51 VkFence fences[3];
52 VkPresentModeKHR present_mode;
53 uint32_t image_count;
54
55 bool use_prime_blit;
56
57 /* Command pools, one per queue family */
58 VkCommandPool *cmd_pools;
59
60 VkResult (*destroy)(struct wsi_swapchain *swapchain,
61 const VkAllocationCallbacks *pAllocator);
62 struct wsi_image *(*get_wsi_image)(struct wsi_swapchain *swapchain,
63 uint32_t image_index);
64 VkResult (*acquire_next_image)(struct wsi_swapchain *swap_chain,
65 const VkAcquireNextImageInfoKHR *info,
66 uint32_t *image_index);
67 VkResult (*queue_present)(struct wsi_swapchain *swap_chain,
68 uint32_t image_index,
69 const VkPresentRegionKHR *damage);
70 };
71
72 bool
73 wsi_device_matches_drm_fd(const struct wsi_device *wsi, int drm_fd);
74
75 VkResult
76 wsi_swapchain_init(const struct wsi_device *wsi,
77 struct wsi_swapchain *chain,
78 VkDevice device,
79 const VkSwapchainCreateInfoKHR *pCreateInfo,
80 const VkAllocationCallbacks *pAllocator);
81
82 void wsi_swapchain_finish(struct wsi_swapchain *chain);
83
84 VkResult
85 wsi_create_native_image(const struct wsi_swapchain *chain,
86 const VkSwapchainCreateInfoKHR *pCreateInfo,
87 uint32_t num_modifier_lists,
88 const uint32_t *num_modifiers,
89 const uint64_t *const *modifiers,
90 struct wsi_image *image);
91
92 VkResult
93 wsi_create_prime_image(const struct wsi_swapchain *chain,
94 const VkSwapchainCreateInfoKHR *pCreateInfo,
95 bool use_modifier,
96 struct wsi_image *image);
97
98 void
99 wsi_destroy_image(const struct wsi_swapchain *chain,
100 struct wsi_image *image);
101
102
103 struct wsi_interface {
104 VkResult (*get_support)(VkIcdSurfaceBase *surface,
105 struct wsi_device *wsi_device,
106 uint32_t queueFamilyIndex,
107 VkBool32* pSupported);
108 VkResult (*get_capabilities2)(VkIcdSurfaceBase *surface,
109 const void *info_next,
110 VkSurfaceCapabilities2KHR* pSurfaceCapabilities);
111 VkResult (*get_formats)(VkIcdSurfaceBase *surface,
112 struct wsi_device *wsi_device,
113 uint32_t* pSurfaceFormatCount,
114 VkSurfaceFormatKHR* pSurfaceFormats);
115 VkResult (*get_formats2)(VkIcdSurfaceBase *surface,
116 struct wsi_device *wsi_device,
117 const void *info_next,
118 uint32_t* pSurfaceFormatCount,
119 VkSurfaceFormat2KHR* pSurfaceFormats);
120 VkResult (*get_present_modes)(VkIcdSurfaceBase *surface,
121 uint32_t* pPresentModeCount,
122 VkPresentModeKHR* pPresentModes);
123 VkResult (*get_present_rectangles)(VkIcdSurfaceBase *surface,
124 struct wsi_device *wsi_device,
125 uint32_t* pRectCount,
126 VkRect2D* pRects);
127 VkResult (*create_swapchain)(VkIcdSurfaceBase *surface,
128 VkDevice device,
129 struct wsi_device *wsi_device,
130 const VkSwapchainCreateInfoKHR* pCreateInfo,
131 const VkAllocationCallbacks* pAllocator,
132 struct wsi_swapchain **swapchain);
133 };
134
135 VkResult wsi_x11_init_wsi(struct wsi_device *wsi_device,
136 const VkAllocationCallbacks *alloc);
137 void wsi_x11_finish_wsi(struct wsi_device *wsi_device,
138 const VkAllocationCallbacks *alloc);
139 VkResult wsi_wl_init_wsi(struct wsi_device *wsi_device,
140 const VkAllocationCallbacks *alloc,
141 VkPhysicalDevice physical_device);
142 void wsi_wl_finish_wsi(struct wsi_device *wsi_device,
143 const VkAllocationCallbacks *alloc);
144
145
146 VkResult
147 wsi_display_init_wsi(struct wsi_device *wsi_device,
148 const VkAllocationCallbacks *alloc,
149 int display_fd);
150
151 void
152 wsi_display_finish_wsi(struct wsi_device *wsi_device,
153 const VkAllocationCallbacks *alloc);
154
155 #define WSI_DEFINE_NONDISP_HANDLE_CASTS(__wsi_type, __VkType) \
156 \
157 static inline struct __wsi_type * \
158 __wsi_type ## _from_handle(__VkType _handle) \
159 { \
160 return (struct __wsi_type *)(uintptr_t) _handle; \
161 } \
162 \
163 static inline __VkType \
164 __wsi_type ## _to_handle(struct __wsi_type *_obj) \
165 { \
166 return (__VkType)(uintptr_t) _obj; \
167 }
168
169 #define WSI_FROM_HANDLE(__wsi_type, __name, __handle) \
170 struct __wsi_type *__name = __wsi_type ## _from_handle(__handle)
171
172 WSI_DEFINE_NONDISP_HANDLE_CASTS(wsi_swapchain, VkSwapchainKHR)
173
174 #endif /* WSI_COMMON_PRIVATE_H */