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