3d502b9fc9d5ba9ccbe6d0ca921c4a7346e570d0
[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 uint64_t timeout, VkSemaphore semaphore,
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 VkResult
73 wsi_swapchain_init(const struct wsi_device *wsi,
74 struct wsi_swapchain *chain,
75 VkDevice device,
76 const VkSwapchainCreateInfoKHR *pCreateInfo,
77 const VkAllocationCallbacks *pAllocator);
78
79 void wsi_swapchain_finish(struct wsi_swapchain *chain);
80
81 VkResult
82 wsi_create_native_image(const struct wsi_swapchain *chain,
83 const VkSwapchainCreateInfoKHR *pCreateInfo,
84 uint32_t num_modifier_lists,
85 const uint32_t *num_modifiers,
86 const uint64_t *const *modifiers,
87 struct wsi_image *image);
88
89 VkResult
90 wsi_create_prime_image(const struct wsi_swapchain *chain,
91 const VkSwapchainCreateInfoKHR *pCreateInfo,
92 bool use_modifier,
93 struct wsi_image *image);
94
95 void
96 wsi_destroy_image(const struct wsi_swapchain *chain,
97 struct wsi_image *image);
98
99
100 struct wsi_interface {
101 VkResult (*get_support)(VkIcdSurfaceBase *surface,
102 struct wsi_device *wsi_device,
103 const VkAllocationCallbacks *alloc,
104 uint32_t queueFamilyIndex,
105 int local_fd,
106 VkBool32* pSupported);
107 VkResult (*get_capabilities)(VkIcdSurfaceBase *surface,
108 VkSurfaceCapabilitiesKHR* pSurfaceCapabilities);
109 VkResult (*get_capabilities2)(VkIcdSurfaceBase *surface,
110 const void *info_next,
111 VkSurfaceCapabilities2KHR* pSurfaceCapabilities);
112 VkResult (*get_formats)(VkIcdSurfaceBase *surface,
113 struct wsi_device *wsi_device,
114 uint32_t* pSurfaceFormatCount,
115 VkSurfaceFormatKHR* pSurfaceFormats);
116 VkResult (*get_formats2)(VkIcdSurfaceBase *surface,
117 struct wsi_device *wsi_device,
118 const void *info_next,
119 uint32_t* pSurfaceFormatCount,
120 VkSurfaceFormat2KHR* pSurfaceFormats);
121 VkResult (*get_present_modes)(VkIcdSurfaceBase *surface,
122 uint32_t* pPresentModeCount,
123 VkPresentModeKHR* pPresentModes);
124 VkResult (*create_swapchain)(VkIcdSurfaceBase *surface,
125 VkDevice device,
126 struct wsi_device *wsi_device,
127 int local_fd,
128 const VkSwapchainCreateInfoKHR* pCreateInfo,
129 const VkAllocationCallbacks* pAllocator,
130 struct wsi_swapchain **swapchain);
131 };
132
133 VkResult wsi_x11_init_wsi(struct wsi_device *wsi_device,
134 const VkAllocationCallbacks *alloc);
135 void wsi_x11_finish_wsi(struct wsi_device *wsi_device,
136 const VkAllocationCallbacks *alloc);
137 VkResult wsi_wl_init_wsi(struct wsi_device *wsi_device,
138 const VkAllocationCallbacks *alloc,
139 VkPhysicalDevice physical_device);
140 void wsi_wl_finish_wsi(struct wsi_device *wsi_device,
141 const VkAllocationCallbacks *alloc);
142
143
144 VkResult
145 wsi_display_init_wsi(struct wsi_device *wsi_device,
146 const VkAllocationCallbacks *alloc,
147 int display_fd);
148
149 void
150 wsi_display_finish_wsi(struct wsi_device *wsi_device,
151 const VkAllocationCallbacks *alloc);
152
153 #define WSI_DEFINE_NONDISP_HANDLE_CASTS(__wsi_type, __VkType) \
154 \
155 static inline struct __wsi_type * \
156 __wsi_type ## _from_handle(__VkType _handle) \
157 { \
158 return (struct __wsi_type *)(uintptr_t) _handle; \
159 } \
160 \
161 static inline __VkType \
162 __wsi_type ## _to_handle(struct __wsi_type *_obj) \
163 { \
164 return (__VkType)(uintptr_t) _obj; \
165 }
166
167 #define WSI_FROM_HANDLE(__wsi_type, __name, __handle) \
168 struct __wsi_type *__name = __wsi_type ## _from_handle(__handle)
169
170 WSI_DEFINE_NONDISP_HANDLE_CASTS(wsi_swapchain, VkSwapchainKHR)
171
172 #endif /* WSI_COMMON_PRIVATE_H */