2
* Copyright © 2021 Collabora Ltd.
4
* Derived from tu_wsi.c:
5
* Copyright © 2016 Red Hat
6
* Copyright © 2015 Intel Corporation
8
* Permission is hereby granted, free of charge, to any person obtaining a
9
* copy of this software and associated documentation files (the "Software"),
10
* to deal in the Software without restriction, including without limitation
11
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
12
* and/or sell copies of the Software, and to permit persons to whom the
13
* Software is furnished to do so, subject to the following conditions:
15
* The above copyright notice and this permission notice (including the next
16
* paragraph) shall be included in all copies or substantial portions of the
19
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25
* DEALINGS IN THE SOFTWARE.
28
#include "panvk_private.h"
31
#include "vk_semaphore.h"
32
#include "vk_sync_dummy.h"
34
#include "wsi_common.h"
36
static VKAPI_PTR PFN_vkVoidFunction
37
panvk_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName)
39
VK_FROM_HANDLE(panvk_physical_device, pdevice, physicalDevice);
40
return vk_instance_get_proc_addr_unchecked(&pdevice->instance->vk, pName);
44
panvk_wsi_init(struct panvk_physical_device *physical_device)
48
result = wsi_device_init(&physical_device->wsi_device,
49
panvk_physical_device_to_handle(physical_device),
51
&physical_device->instance->vk.alloc,
52
physical_device->master_fd, NULL,
54
if (result != VK_SUCCESS)
57
physical_device->wsi_device.supports_modifiers = false;
59
physical_device->vk.wsi_device = &physical_device->wsi_device;
65
panvk_wsi_finish(struct panvk_physical_device *physical_device)
67
physical_device->vk.wsi_device = NULL;
68
wsi_device_finish(&physical_device->wsi_device,
69
&physical_device->instance->vk.alloc);
73
panvk_AcquireNextImage2KHR(VkDevice _device,
74
const VkAcquireNextImageInfoKHR *pAcquireInfo,
75
uint32_t *pImageIndex)
77
VK_FROM_HANDLE(panvk_device, device, _device);
78
VK_FROM_HANDLE(vk_fence, fence, pAcquireInfo->fence);
79
VK_FROM_HANDLE(vk_semaphore, sem, pAcquireInfo->semaphore);
80
struct panvk_physical_device *pdevice = device->physical_device;
83
wsi_common_acquire_next_image2(&pdevice->wsi_device, _device,
84
pAcquireInfo, pImageIndex);
86
/* signal fence/semaphore - image is available immediately */
87
if (result == VK_SUCCESS || result == VK_SUBOPTIMAL_KHR) {
90
vk_fence_reset_temporary(&device->vk, fence);
91
sync_res = vk_sync_create(&device->vk, &vk_sync_dummy_type,
92
0 /* flags */, 0 /* initial_value */,
94
if (sync_res != VK_SUCCESS)
99
vk_semaphore_reset_temporary(&device->vk, sem);
100
sync_res = vk_sync_create(&device->vk, &vk_sync_dummy_type,
101
0 /* flags */, 0 /* initial_value */,
103
if (sync_res != VK_SUCCESS)