vulkan/wsi: Do image creation in common code
[mesa.git] / src / vulkan / wsi / wsi_common.h
1 /*
2 * Copyright © 2015 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_H
24 #define WSI_COMMON_H
25
26 #include <stdint.h>
27 #include <stdbool.h>
28
29 #include "vk_alloc.h"
30 #include <vulkan/vulkan.h>
31 #include <vulkan/vk_icd.h>
32
33 /* This is guaranteed to not collide with anything because it's in the
34 * VK_KHR_swapchain namespace but not actually used by the extension.
35 */
36 #define VK_STRUCTURE_TYPE_WSI_IMAGE_CREATE_INFO_MESA (VkStructureType)1000001002
37 #define VK_STRUCTURE_TYPE_WSI_MEMORY_ALLOCATE_INFO_MESA (VkStructureType)1000001003
38
39 struct wsi_image_create_info {
40 VkStructureType sType;
41 const void *pNext;
42 bool scanout;
43 };
44
45 struct wsi_memory_allocate_info {
46 VkStructureType sType;
47 const void *pNext;
48 bool implicit_sync;
49 };
50
51 struct wsi_device;
52
53 struct wsi_swapchain {
54 const struct wsi_device *wsi;
55
56 VkDevice device;
57 VkAllocationCallbacks alloc;
58 VkFence fences[3];
59 VkPresentModeKHR present_mode;
60 uint32_t image_count;
61
62 /* Command pools, one per queue family */
63 VkCommandPool *cmd_pools;
64
65 VkResult (*destroy)(struct wsi_swapchain *swapchain,
66 const VkAllocationCallbacks *pAllocator);
67 VkResult (*get_images)(struct wsi_swapchain *swapchain,
68 uint32_t *pCount, VkImage *pSwapchainImages);
69 VkResult (*acquire_next_image)(struct wsi_swapchain *swap_chain,
70 uint64_t timeout, VkSemaphore semaphore,
71 uint32_t *image_index);
72 VkResult (*queue_present)(struct wsi_swapchain *swap_chain,
73 VkQueue queue,
74 uint32_t waitSemaphoreCount,
75 const VkSemaphore *pWaitSemaphores,
76 uint32_t image_index,
77 const VkPresentRegionKHR *damage);
78 };
79
80 struct wsi_interface {
81 VkResult (*get_support)(VkIcdSurfaceBase *surface,
82 struct wsi_device *wsi_device,
83 const VkAllocationCallbacks *alloc,
84 uint32_t queueFamilyIndex,
85 int local_fd,
86 bool can_handle_different_gpu,
87 VkBool32* pSupported);
88 VkResult (*get_capabilities)(VkIcdSurfaceBase *surface,
89 VkSurfaceCapabilitiesKHR* pSurfaceCapabilities);
90 VkResult (*get_capabilities2)(VkIcdSurfaceBase *surface,
91 const void *info_next,
92 VkSurfaceCapabilities2KHR* pSurfaceCapabilities);
93 VkResult (*get_formats)(VkIcdSurfaceBase *surface,
94 struct wsi_device *wsi_device,
95 uint32_t* pSurfaceFormatCount,
96 VkSurfaceFormatKHR* pSurfaceFormats);
97 VkResult (*get_formats2)(VkIcdSurfaceBase *surface,
98 struct wsi_device *wsi_device,
99 const void *info_next,
100 uint32_t* pSurfaceFormatCount,
101 VkSurfaceFormat2KHR* pSurfaceFormats);
102 VkResult (*get_present_modes)(VkIcdSurfaceBase *surface,
103 uint32_t* pPresentModeCount,
104 VkPresentModeKHR* pPresentModes);
105 VkResult (*create_swapchain)(VkIcdSurfaceBase *surface,
106 VkDevice device,
107 struct wsi_device *wsi_device,
108 int local_fd,
109 const VkSwapchainCreateInfoKHR* pCreateInfo,
110 const VkAllocationCallbacks* pAllocator,
111 struct wsi_swapchain **swapchain);
112 };
113
114 #define VK_ICD_WSI_PLATFORM_MAX 5
115
116 struct wsi_device {
117 VkPhysicalDeviceMemoryProperties memory_props;
118 uint32_t queue_family_count;
119
120 uint32_t (*queue_get_family_index)(VkQueue queue);
121
122 #define WSI_CB(cb) PFN_vk##cb cb
123 WSI_CB(AllocateMemory);
124 WSI_CB(AllocateCommandBuffers);
125 WSI_CB(BindBufferMemory);
126 WSI_CB(BindImageMemory);
127 WSI_CB(BeginCommandBuffer);
128 WSI_CB(CmdCopyImageToBuffer);
129 WSI_CB(CreateBuffer);
130 WSI_CB(CreateCommandPool);
131 WSI_CB(CreateImage);
132 WSI_CB(DestroyBuffer);
133 WSI_CB(DestroyCommandPool);
134 WSI_CB(DestroyImage);
135 WSI_CB(EndCommandBuffer);
136 WSI_CB(FreeMemory);
137 WSI_CB(FreeCommandBuffers);
138 WSI_CB(GetBufferMemoryRequirements);
139 WSI_CB(GetImageMemoryRequirements);
140 WSI_CB(GetImageSubresourceLayout);
141 WSI_CB(GetMemoryFdKHR);
142 WSI_CB(QueueSubmit);
143 #undef WSI_CB
144
145 struct wsi_interface * wsi[VK_ICD_WSI_PLATFORM_MAX];
146 };
147
148 typedef PFN_vkVoidFunction (VKAPI_PTR *WSI_FN_GetPhysicalDeviceProcAddr)(VkPhysicalDevice physicalDevice, const char* pName);
149
150 void
151 wsi_device_init(struct wsi_device *wsi,
152 VkPhysicalDevice pdevice,
153 WSI_FN_GetPhysicalDeviceProcAddr proc_addr);
154
155 #define WSI_CB(cb) PFN_vk##cb cb
156 struct wsi_callbacks {
157 VkPhysicalDevice (*device_get_physical)(VkDevice);
158
159 WSI_CB(GetDeviceProcAddr);
160 WSI_CB(GetPhysicalDeviceFormatProperties);
161 WSI_CB(GetPhysicalDeviceMemoryProperties);
162 WSI_CB(GetPhysicalDeviceQueueFamilyProperties);
163 };
164 #undef WSI_CB
165
166 #define WSI_DEFINE_NONDISP_HANDLE_CASTS(__wsi_type, __VkType) \
167 \
168 static inline struct __wsi_type * \
169 __wsi_type ## _from_handle(__VkType _handle) \
170 { \
171 return (struct __wsi_type *)(uintptr_t) _handle; \
172 } \
173 \
174 static inline __VkType \
175 __wsi_type ## _to_handle(struct __wsi_type *_obj) \
176 { \
177 return (__VkType)(uintptr_t) _obj; \
178 }
179
180 WSI_DEFINE_NONDISP_HANDLE_CASTS(wsi_swapchain, VkSwapchainKHR)
181
182 #define ICD_DEFINE_NONDISP_HANDLE_CASTS(__VkIcdType, __VkType) \
183 \
184 static inline __VkIcdType * \
185 __VkIcdType ## _from_handle(__VkType _handle) \
186 { \
187 return (__VkIcdType *)(uintptr_t) _handle; \
188 } \
189 \
190 static inline __VkType \
191 __VkIcdType ## _to_handle(__VkIcdType *_obj) \
192 { \
193 return (__VkType)(uintptr_t) _obj; \
194 }
195
196 #define ICD_FROM_HANDLE(__VkIcdType, __name, __handle) \
197 __VkIcdType *__name = __VkIcdType ## _from_handle(__handle)
198
199 ICD_DEFINE_NONDISP_HANDLE_CASTS(VkIcdSurfaceBase, VkSurfaceKHR)
200
201 VkResult wsi_x11_init_wsi(struct wsi_device *wsi_device,
202 const VkAllocationCallbacks *alloc);
203 void wsi_x11_finish_wsi(struct wsi_device *wsi_device,
204 const VkAllocationCallbacks *alloc);
205 VkResult wsi_wl_init_wsi(struct wsi_device *wsi_device,
206 const VkAllocationCallbacks *alloc,
207 VkPhysicalDevice physical_device,
208 const struct wsi_callbacks *cbs);
209 void wsi_wl_finish_wsi(struct wsi_device *wsi_device,
210 const VkAllocationCallbacks *alloc);
211
212
213 #endif