anv: move common wsi code to x11/wayland common files.
[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 "anv_private.h"
31 #include "wsi_common_x11.h"
32
33 #include "vk_format_info.h"
34 #include "util/hash_table.h"
35
36 VkBool32 anv_GetPhysicalDeviceXcbPresentationSupportKHR(
37 VkPhysicalDevice physicalDevice,
38 uint32_t queueFamilyIndex,
39 xcb_connection_t* connection,
40 xcb_visualid_t visual_id)
41 {
42 ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
43
44 return anv_get_physical_device_xcb_presentation_support(
45 &device->wsi_device,
46 &device->instance->alloc,
47 queueFamilyIndex, connection, visual_id);
48 }
49
50 VkBool32 anv_GetPhysicalDeviceXlibPresentationSupportKHR(
51 VkPhysicalDevice physicalDevice,
52 uint32_t queueFamilyIndex,
53 Display* dpy,
54 VisualID visualID)
55 {
56 ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
57
58 return anv_get_physical_device_xcb_presentation_support(
59 &device->wsi_device,
60 &device->instance->alloc,
61 queueFamilyIndex, XGetXCBConnection(dpy), visualID);
62 }
63
64 VkResult anv_CreateXcbSurfaceKHR(
65 VkInstance _instance,
66 const VkXcbSurfaceCreateInfoKHR* pCreateInfo,
67 const VkAllocationCallbacks* pAllocator,
68 VkSurfaceKHR* pSurface)
69 {
70 ANV_FROM_HANDLE(anv_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 anv_create_xcb_surface(alloc, pCreateInfo, pSurface);
80 }
81
82 VkResult anv_CreateXlibSurfaceKHR(
83 VkInstance _instance,
84 const VkXlibSurfaceCreateInfoKHR* pCreateInfo,
85 const VkAllocationCallbacks* pAllocator,
86 VkSurfaceKHR* pSurface)
87 {
88 ANV_FROM_HANDLE(anv_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 anv_create_xlib_surface(alloc, pCreateInfo, pSurface);
99 }