Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/broadcom/vulkan/v3dv_wsi_x11.c
4560 views
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
36
VKAPI_ATTR VkBool32 VKAPI_CALL
37
v3dv_GetPhysicalDeviceXcbPresentationSupportKHR(
38
VkPhysicalDevice physicalDevice,
39
uint32_t queueFamilyIndex,
40
xcb_connection_t* connection,
41
xcb_visualid_t visual_id)
42
{
43
V3DV_FROM_HANDLE(v3dv_physical_device, device, physicalDevice);
44
45
return wsi_get_physical_device_xcb_presentation_support(
46
&device->wsi_device,
47
queueFamilyIndex,
48
connection, visual_id);
49
}
50
51
VKAPI_ATTR VkBool32 VKAPI_CALL
52
v3dv_GetPhysicalDeviceXlibPresentationSupportKHR(
53
VkPhysicalDevice physicalDevice,
54
uint32_t queueFamilyIndex,
55
Display* dpy,
56
VisualID visualID)
57
{
58
V3DV_FROM_HANDLE(v3dv_physical_device, device, physicalDevice);
59
60
return wsi_get_physical_device_xcb_presentation_support(
61
&device->wsi_device,
62
queueFamilyIndex,
63
XGetXCBConnection(dpy), visualID);
64
}
65
66
VKAPI_ATTR VkResult VKAPI_CALL
67
v3dv_CreateXcbSurfaceKHR(
68
VkInstance _instance,
69
const VkXcbSurfaceCreateInfoKHR* pCreateInfo,
70
const VkAllocationCallbacks* pAllocator,
71
VkSurfaceKHR* pSurface)
72
{
73
V3DV_FROM_HANDLE(v3dv_instance, instance, _instance);
74
const VkAllocationCallbacks *alloc;
75
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR);
76
77
if (pAllocator)
78
alloc = pAllocator;
79
else
80
alloc = &instance->vk.alloc;
81
82
return wsi_create_xcb_surface(alloc, pCreateInfo, pSurface);
83
}
84
85
VKAPI_ATTR VkResult VKAPI_CALL
86
v3dv_CreateXlibSurfaceKHR(
87
VkInstance _instance,
88
const VkXlibSurfaceCreateInfoKHR* pCreateInfo,
89
const VkAllocationCallbacks* pAllocator,
90
VkSurfaceKHR* pSurface)
91
{
92
V3DV_FROM_HANDLE(v3dv_instance, instance, _instance);
93
const VkAllocationCallbacks *alloc;
94
95
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR);
96
97
if (pAllocator)
98
alloc = pAllocator;
99
else
100
alloc = &instance->vk.alloc;
101
102
return wsi_create_xlib_surface(alloc, pCreateInfo, pSurface);
103
}
104
105