1 /*
2 * Copyright © 2020 Raspberry Pi
3 *
4 * based mostly on anv driver which is:
5 * Copyright © 2015 Intel Corporation
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 * IN THE SOFTWARE.
25 */
26
27 #include <X11/Xlib-xcb.h>
28 #include <X11/xshmfence.h>
29 #include <xcb/xcb.h>
30 #include <xcb/dri3.h>
31 #include <xcb/present.h>
32
33 #include "wsi_common_x11.h"
34 #include "v3dv_private.h"
35
v3dv_GetPhysicalDeviceXcbPresentationSupportKHR(VkPhysicalDevice physicalDevice,uint32_t queueFamilyIndex,xcb_connection_t * connection,xcb_visualid_t visual_id)36 VkBool32 v3dv_GetPhysicalDeviceXcbPresentationSupportKHR(
37 VkPhysicalDevice physicalDevice,
38 uint32_t queueFamilyIndex,
39 xcb_connection_t* connection,
40 xcb_visualid_t visual_id)
41 {
42 V3DV_FROM_HANDLE(v3dv_physical_device, device, physicalDevice);
43
44 return wsi_get_physical_device_xcb_presentation_support(
45 &device->wsi_device,
46 queueFamilyIndex,
47 connection, visual_id);
48 }
49
v3dv_GetPhysicalDeviceXlibPresentationSupportKHR(VkPhysicalDevice physicalDevice,uint32_t queueFamilyIndex,Display * dpy,VisualID visualID)50 VkBool32 v3dv_GetPhysicalDeviceXlibPresentationSupportKHR(
51 VkPhysicalDevice physicalDevice,
52 uint32_t queueFamilyIndex,
53 Display* dpy,
54 VisualID visualID)
55 {
56 V3DV_FROM_HANDLE(v3dv_physical_device, device, physicalDevice);
57
58 return wsi_get_physical_device_xcb_presentation_support(
59 &device->wsi_device,
60 queueFamilyIndex,
61 XGetXCBConnection(dpy), visualID);
62 }
63
v3dv_CreateXcbSurfaceKHR(VkInstance _instance,const VkXcbSurfaceCreateInfoKHR * pCreateInfo,const VkAllocationCallbacks * pAllocator,VkSurfaceKHR * pSurface)64 VkResult v3dv_CreateXcbSurfaceKHR(
65 VkInstance _instance,
66 const VkXcbSurfaceCreateInfoKHR* pCreateInfo,
67 const VkAllocationCallbacks* pAllocator,
68 VkSurfaceKHR* pSurface)
69 {
70 V3DV_FROM_HANDLE(v3dv_instance, instance, _instance);
71 const VkAllocationCallbacks *alloc;
72 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR);
73
74 if (pAllocator)
75 alloc = pAllocator;
76 else
77 alloc = &instance->alloc;
78
79 return wsi_create_xcb_surface(alloc, pCreateInfo, pSurface);
80 }
81
v3dv_CreateXlibSurfaceKHR(VkInstance _instance,const VkXlibSurfaceCreateInfoKHR * pCreateInfo,const VkAllocationCallbacks * pAllocator,VkSurfaceKHR * pSurface)82 VkResult v3dv_CreateXlibSurfaceKHR(
83 VkInstance _instance,
84 const VkXlibSurfaceCreateInfoKHR* pCreateInfo,
85 const VkAllocationCallbacks* pAllocator,
86 VkSurfaceKHR* pSurface)
87 {
88 V3DV_FROM_HANDLE(v3dv_instance, instance, _instance);
89 const VkAllocationCallbacks *alloc;
90
91 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR);
92
93 if (pAllocator)
94 alloc = pAllocator;
95 else
96 alloc = &instance->alloc;
97
98 return wsi_create_xlib_surface(alloc, pCreateInfo, pSurface);
99 }
100