~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to src/gallium/frontends/lavapipe/lvp_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 © 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 "lvp_wsi.h"
25
 
 
26
 
#include "vk_fence.h"
27
 
#include "vk_semaphore.h"
28
 
#include "vk_sync_dummy.h"
29
 
 
30
 
static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL
31
 
lvp_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName)
32
 
{
33
 
   LVP_FROM_HANDLE(lvp_physical_device, pdevice, physicalDevice);
34
 
   return vk_instance_get_proc_addr_unchecked(pdevice->vk.instance, pName);
35
 
}
36
 
 
37
 
VkResult
38
 
lvp_init_wsi(struct lvp_physical_device *physical_device)
39
 
{
40
 
   VkResult result;
41
 
 
42
 
   result = wsi_device_init(&physical_device->wsi_device,
43
 
                            lvp_physical_device_to_handle(physical_device),
44
 
                            lvp_wsi_proc_addr,
45
 
                            &physical_device->vk.instance->alloc,
46
 
                            -1, NULL, true);
47
 
   if (result != VK_SUCCESS)
48
 
      return result;
49
 
 
50
 
   physical_device->vk.wsi_device = &physical_device->wsi_device;
51
 
 
52
 
   return VK_SUCCESS;
53
 
}
54
 
 
55
 
void
56
 
lvp_finish_wsi(struct lvp_physical_device *physical_device)
57
 
{
58
 
   physical_device->vk.wsi_device = NULL;
59
 
   wsi_device_finish(&physical_device->wsi_device,
60
 
                     &physical_device->vk.instance->alloc);
61
 
}
62
 
 
63
 
VKAPI_ATTR VkResult VKAPI_CALL lvp_AcquireNextImage2KHR(
64
 
   VkDevice                                     _device,
65
 
   const VkAcquireNextImageInfoKHR*             pAcquireInfo,
66
 
   uint32_t*                                    pImageIndex)
67
 
{
68
 
   LVP_FROM_HANDLE(lvp_device, device, _device);
69
 
   struct lvp_physical_device *pdevice = device->physical_device;
70
 
 
71
 
   VkResult result = wsi_common_acquire_next_image2(&pdevice->wsi_device,
72
 
                                                    _device,
73
 
                                                    pAcquireInfo,
74
 
                                                    pImageIndex);
75
 
 
76
 
   VK_FROM_HANDLE(vk_fence, fence, pAcquireInfo->fence);
77
 
   VK_FROM_HANDLE(vk_semaphore, sem, pAcquireInfo->semaphore);
78
 
   if (result == VK_SUCCESS || result == VK_SUBOPTIMAL_KHR) {
79
 
      VkResult sync_res;
80
 
      if (fence) {
81
 
         vk_fence_reset_temporary(&device->vk, fence);
82
 
         sync_res = vk_sync_create(&device->vk, &vk_sync_dummy_type,
83
 
                                   0 /* flags */, 0 /* initial_value */,
84
 
                                   &fence->temporary);
85
 
         if (sync_res != VK_SUCCESS)
86
 
            return sync_res;
87
 
      }
88
 
 
89
 
      if (sem) {
90
 
         vk_semaphore_reset_temporary(&device->vk, sem);
91
 
         sync_res = vk_sync_create(&device->vk, &vk_sync_dummy_type,
92
 
                                   0 /* flags */, 0 /* initial_value */,
93
 
                                   &sem->temporary);
94
 
         if (sync_res != VK_SUCCESS)
95
 
            return sync_res;
96
 
      }
97
 
   }
98
 
 
99
 
   return result;
100
 
}