~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to src/panfrost/vulkan/panvk_wsi.c

  • Committer: mmach
  • Date: 2022-09-22 19:56:13 UTC
  • Revision ID: netbit73@gmail.com-20220922195613-wtik9mmy20tmor0i
2022-09-22 21:17:09

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2021 Collabora Ltd.
3
 
 *
4
 
 * Derived from tu_wsi.c:
5
 
 * Copyright © 2016 Red Hat
6
 
 * Copyright © 2015 Intel Corporation
7
 
 *
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:
14
 
 *
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
17
 
 * Software.
18
 
 *
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.
26
 
 */
27
 
 
28
 
#include "panvk_private.h"
29
 
 
30
 
#include "vk_fence.h"
31
 
#include "vk_semaphore.h"
32
 
#include "vk_sync_dummy.h"
33
 
#include "vk_util.h"
34
 
#include "wsi_common.h"
35
 
 
36
 
static VKAPI_PTR PFN_vkVoidFunction
37
 
panvk_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName)
38
 
{
39
 
   VK_FROM_HANDLE(panvk_physical_device, pdevice, physicalDevice);
40
 
   return vk_instance_get_proc_addr_unchecked(&pdevice->instance->vk, pName);
41
 
}
42
 
 
43
 
VkResult
44
 
panvk_wsi_init(struct panvk_physical_device *physical_device)
45
 
{
46
 
   VkResult result;
47
 
 
48
 
   result = wsi_device_init(&physical_device->wsi_device,
49
 
                            panvk_physical_device_to_handle(physical_device),
50
 
                            panvk_wsi_proc_addr,
51
 
                            &physical_device->instance->vk.alloc,
52
 
                            physical_device->master_fd, NULL,
53
 
                            false);
54
 
   if (result != VK_SUCCESS)
55
 
      return result;
56
 
 
57
 
   physical_device->wsi_device.supports_modifiers = false;
58
 
 
59
 
   physical_device->vk.wsi_device = &physical_device->wsi_device;
60
 
 
61
 
   return VK_SUCCESS;
62
 
}
63
 
 
64
 
void
65
 
panvk_wsi_finish(struct panvk_physical_device *physical_device)
66
 
{
67
 
   physical_device->vk.wsi_device = NULL;
68
 
   wsi_device_finish(&physical_device->wsi_device,
69
 
                     &physical_device->instance->vk.alloc);
70
 
}
71
 
 
72
 
VkResult
73
 
panvk_AcquireNextImage2KHR(VkDevice _device,
74
 
                           const VkAcquireNextImageInfoKHR *pAcquireInfo,
75
 
                           uint32_t *pImageIndex)
76
 
{
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;
81
 
 
82
 
   VkResult result =
83
 
      wsi_common_acquire_next_image2(&pdevice->wsi_device, _device,
84
 
                                     pAcquireInfo, pImageIndex);
85
 
 
86
 
   /* signal fence/semaphore - image is available immediately */
87
 
   if (result == VK_SUCCESS || result == VK_SUBOPTIMAL_KHR) {
88
 
      VkResult sync_res;
89
 
      if (fence) {
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 */,
93
 
                                   &fence->temporary);
94
 
         if (sync_res != VK_SUCCESS)
95
 
            return sync_res;
96
 
      }
97
 
 
98
 
      if (sem) {
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 */,
102
 
                                   &sem->temporary);
103
 
         if (sync_res != VK_SUCCESS)
104
 
            return sync_res;
105
 
      }
106
 
   }
107
 
 
108
 
   return result;
109
 
}