vulkan/wsi: Use VK_EXT_pci_bus_info for DRM fd matching
[mesa.git] / src / intel / vulkan / anv_wsi_x11.c
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
24 #include <X11/Xlib-xcb.h>
25 #include <X11/xshmfence.h>
26 #include <xcb/xcb.h>
27 #include <xcb/dri3.h>
28 #include <xcb/present.h>
29
30 #include "wsi_common_x11.h"
31 #include "anv_private.h"
32
33 VkBool32 anv_GetPhysicalDeviceXcbPresentationSupportKHR(
34 VkPhysicalDevice physicalDevice,
35 uint32_t queueFamilyIndex,
36 xcb_connection_t* connection,
37 xcb_visualid_t visual_id)
38 {
39 ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
40
41 return wsi_get_physical_device_xcb_presentation_support(
42 &device->wsi_device,
43 queueFamilyIndex,
44 false,
45 connection, visual_id);
46 }
47
48 VkBool32 anv_GetPhysicalDeviceXlibPresentationSupportKHR(
49 VkPhysicalDevice physicalDevice,
50 uint32_t queueFamilyIndex,
51 Display* dpy,
52 VisualID visualID)
53 {
54 ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
55
56 return wsi_get_physical_device_xcb_presentation_support(
57 &device->wsi_device,
58 queueFamilyIndex,
59 false,
60 XGetXCBConnection(dpy), visualID);
61 }
62
63 VkResult anv_CreateXcbSurfaceKHR(
64 VkInstance _instance,
65 const VkXcbSurfaceCreateInfoKHR* pCreateInfo,
66 const VkAllocationCallbacks* pAllocator,
67 VkSurfaceKHR* pSurface)
68 {
69 ANV_FROM_HANDLE(anv_instance, instance, _instance);
70 const VkAllocationCallbacks *alloc;
71 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR);
72
73 if (pAllocator)
74 alloc = pAllocator;
75 else
76 alloc = &instance->alloc;
77
78 return wsi_create_xcb_surface(alloc, pCreateInfo, pSurface);
79 }
80
81 VkResult anv_CreateXlibSurfaceKHR(
82 VkInstance _instance,
83 const VkXlibSurfaceCreateInfoKHR* pCreateInfo,
84 const VkAllocationCallbacks* pAllocator,
85 VkSurfaceKHR* pSurface)
86 {
87 ANV_FROM_HANDLE(anv_instance, instance, _instance);
88 const VkAllocationCallbacks *alloc;
89
90 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR);
91
92 if (pAllocator)
93 alloc = pAllocator;
94 else
95 alloc = &instance->alloc;
96
97 return wsi_create_xlib_surface(alloc, pCreateInfo, pSurface);
98 }