vulkan/wsi/radv: add initial prime support (v1.1)
[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 &device->instance->alloc,
44 queueFamilyIndex,
45 device->local_fd, false,
46 connection, visual_id);
47 }
48
49 VkBool32 anv_GetPhysicalDeviceXlibPresentationSupportKHR(
50 VkPhysicalDevice physicalDevice,
51 uint32_t queueFamilyIndex,
52 Display* dpy,
53 VisualID visualID)
54 {
55 ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
56
57 return wsi_get_physical_device_xcb_presentation_support(
58 &device->wsi_device,
59 &device->instance->alloc,
60 queueFamilyIndex,
61 device->local_fd, false,
62 XGetXCBConnection(dpy), visualID);
63 }
64
65 VkResult anv_CreateXcbSurfaceKHR(
66 VkInstance _instance,
67 const VkXcbSurfaceCreateInfoKHR* pCreateInfo,
68 const VkAllocationCallbacks* pAllocator,
69 VkSurfaceKHR* pSurface)
70 {
71 ANV_FROM_HANDLE(anv_instance, instance, _instance);
72 const VkAllocationCallbacks *alloc;
73 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR);
74
75 if (pAllocator)
76 alloc = pAllocator;
77 else
78 alloc = &instance->alloc;
79
80 return wsi_create_xcb_surface(alloc, pCreateInfo, pSurface);
81 }
82
83 VkResult anv_CreateXlibSurfaceKHR(
84 VkInstance _instance,
85 const VkXlibSurfaceCreateInfoKHR* pCreateInfo,
86 const VkAllocationCallbacks* pAllocator,
87 VkSurfaceKHR* pSurface)
88 {
89 ANV_FROM_HANDLE(anv_instance, instance, _instance);
90 const VkAllocationCallbacks *alloc;
91
92 assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR);
93
94 if (pAllocator)
95 alloc = pAllocator;
96 else
97 alloc = &instance->alloc;
98
99 return wsi_create_xlib_surface(alloc, pCreateInfo, pSurface);
100 }