2015-09-01 17:00:10 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2015 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-10-14 05:42:29 +01:00
|
|
|
#include "anv_private.h"
|
|
|
|
|
#include "wsi_common.h"
|
2016-10-14 01:34:10 +01:00
|
|
|
#include "vk_format_info.h"
|
2017-06-06 12:31:05 +01:00
|
|
|
#include "vk_util.h"
|
2016-10-14 05:14:45 +01:00
|
|
|
|
2017-04-12 11:00:39 -07:00
|
|
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
2017-11-16 08:46:41 +10:00
|
|
|
#define WSI_CB(x) .x = anv_##x
|
2016-10-14 06:36:17 +01:00
|
|
|
static const struct wsi_callbacks wsi_cbs = {
|
2017-11-16 08:46:41 +10:00
|
|
|
WSI_CB(GetPhysicalDeviceFormatProperties),
|
2016-10-14 05:14:45 +01:00
|
|
|
};
|
2017-04-12 11:00:39 -07:00
|
|
|
#endif
|
2016-10-14 05:14:45 +01:00
|
|
|
|
2017-11-15 18:50:44 -08:00
|
|
|
static PFN_vkVoidFunction
|
|
|
|
|
anv_wsi_proc_addr(VkPhysicalDevice physicalDevice, const char *pName)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_physical_device, physical_device, physicalDevice);
|
|
|
|
|
return anv_lookup_entrypoint(&physical_device->info, pName);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-15 19:04:10 -08:00
|
|
|
static uint32_t
|
|
|
|
|
anv_wsi_queue_get_family_index(VkQueue queue)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-04 11:14:45 -07:00
|
|
|
VkResult
|
2016-05-15 22:21:24 -07:00
|
|
|
anv_init_wsi(struct anv_physical_device *physical_device)
|
2015-09-04 11:14:45 -07:00
|
|
|
{
|
2015-09-04 17:50:32 -07:00
|
|
|
VkResult result;
|
|
|
|
|
|
2017-11-15 18:50:44 -08:00
|
|
|
wsi_device_init(&physical_device->wsi_device,
|
|
|
|
|
anv_physical_device_to_handle(physical_device),
|
|
|
|
|
anv_wsi_proc_addr);
|
2016-05-15 22:21:24 -07:00
|
|
|
|
2017-11-15 19:04:10 -08:00
|
|
|
physical_device->wsi_device.queue_get_family_index =
|
|
|
|
|
anv_wsi_queue_get_family_index;
|
|
|
|
|
|
2016-04-20 19:15:18 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
2016-10-14 06:36:17 +01:00
|
|
|
result = wsi_x11_init_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
|
2015-09-04 17:50:32 -07:00
|
|
|
if (result != VK_SUCCESS)
|
|
|
|
|
return result;
|
2016-04-20 19:15:18 +01:00
|
|
|
#endif
|
2015-09-04 17:50:32 -07:00
|
|
|
|
2016-04-20 19:01:00 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
2016-10-14 06:36:17 +01:00
|
|
|
result = wsi_wl_init_wsi(&physical_device->wsi_device, &physical_device->instance->alloc,
|
2016-10-14 05:14:45 +01:00
|
|
|
anv_physical_device_to_handle(physical_device),
|
2016-10-14 06:36:17 +01:00
|
|
|
&wsi_cbs);
|
2015-09-04 17:50:32 -07:00
|
|
|
if (result != VK_SUCCESS) {
|
2016-05-28 19:49:37 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
2016-10-14 06:36:17 +01:00
|
|
|
wsi_x11_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
|
2016-05-28 19:49:37 +01:00
|
|
|
#endif
|
2015-09-04 17:50:32 -07:00
|
|
|
return result;
|
|
|
|
|
}
|
2015-09-04 19:18:50 -07:00
|
|
|
#endif
|
2015-09-04 17:50:32 -07:00
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
2015-09-04 11:14:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2016-05-15 22:21:24 -07:00
|
|
|
anv_finish_wsi(struct anv_physical_device *physical_device)
|
2015-09-04 11:14:45 -07:00
|
|
|
{
|
2016-04-20 19:01:00 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
2016-10-14 06:36:17 +01:00
|
|
|
wsi_wl_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
|
2015-09-04 19:18:50 -07:00
|
|
|
#endif
|
2016-04-20 19:15:18 +01:00
|
|
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
2016-10-14 06:36:17 +01:00
|
|
|
wsi_x11_finish_wsi(&physical_device->wsi_device, &physical_device->instance->alloc);
|
2016-04-20 19:15:18 +01:00
|
|
|
#endif
|
2015-09-04 11:14:45 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
void anv_DestroySurfaceKHR(
|
2016-01-28 15:34:22 -08:00
|
|
|
VkInstance _instance,
|
2015-12-02 16:28:36 -08:00
|
|
|
VkSurfaceKHR _surface,
|
|
|
|
|
const VkAllocationCallbacks* pAllocator)
|
2015-09-01 17:00:10 -07:00
|
|
|
{
|
2016-01-28 15:34:22 -08:00
|
|
|
ANV_FROM_HANDLE(anv_instance, instance, _instance);
|
2017-01-10 13:23:06 -08:00
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, _surface);
|
2015-09-01 17:00:10 -07:00
|
|
|
|
2016-11-10 21:32:32 -08:00
|
|
|
if (!surface)
|
|
|
|
|
return;
|
|
|
|
|
|
2016-10-14 13:31:35 +10:00
|
|
|
vk_free2(&instance->alloc, pAllocator, surface);
|
2015-09-01 17:00:10 -07:00
|
|
|
}
|
2015-09-01 18:59:06 -07:00
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_GetPhysicalDeviceSurfaceSupportKHR(
|
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
|
uint32_t queueFamilyIndex,
|
|
|
|
|
VkSurfaceKHR _surface,
|
|
|
|
|
VkBool32* pSupported)
|
2015-09-01 18:59:06 -07:00
|
|
|
{
|
2015-12-02 16:28:36 -08:00
|
|
|
ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
|
2017-01-10 13:23:06 -08:00
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, _surface);
|
2016-10-14 06:36:17 +01:00
|
|
|
struct wsi_interface *iface = device->wsi_device.wsi[surface->platform];
|
2015-09-04 11:14:45 -07:00
|
|
|
|
2016-10-13 05:26:03 +01:00
|
|
|
return iface->get_support(surface, &device->wsi_device,
|
|
|
|
|
&device->instance->alloc,
|
2017-11-16 11:56:00 -08:00
|
|
|
queueFamilyIndex, device->local_fd, true, pSupported);
|
2015-09-01 18:59:06 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_GetPhysicalDeviceSurfaceCapabilitiesKHR(
|
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
|
VkSurfaceKHR _surface,
|
|
|
|
|
VkSurfaceCapabilitiesKHR* pSurfaceCapabilities)
|
2015-09-01 18:59:06 -07:00
|
|
|
{
|
2015-12-02 16:28:36 -08:00
|
|
|
ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
|
2017-01-10 13:23:06 -08:00
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, _surface);
|
2016-10-14 06:36:17 +01:00
|
|
|
struct wsi_interface *iface = device->wsi_device.wsi[surface->platform];
|
2015-10-07 14:13:55 -07:00
|
|
|
|
2016-10-13 05:27:56 +01:00
|
|
|
return iface->get_capabilities(surface, pSurfaceCapabilities);
|
2015-10-07 14:13:55 -07:00
|
|
|
}
|
|
|
|
|
|
2017-03-17 15:07:44 -07:00
|
|
|
VkResult anv_GetPhysicalDeviceSurfaceCapabilities2KHR(
|
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
|
const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo,
|
|
|
|
|
VkSurfaceCapabilities2KHR* pSurfaceCapabilities)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
|
|
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, pSurfaceInfo->surface);
|
|
|
|
|
struct wsi_interface *iface = device->wsi_device.wsi[surface->platform];
|
|
|
|
|
|
|
|
|
|
return iface->get_capabilities2(surface, pSurfaceInfo->pNext,
|
|
|
|
|
pSurfaceCapabilities);
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_GetPhysicalDeviceSurfaceFormatsKHR(
|
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
|
VkSurfaceKHR _surface,
|
|
|
|
|
uint32_t* pSurfaceFormatCount,
|
|
|
|
|
VkSurfaceFormatKHR* pSurfaceFormats)
|
2015-10-13 11:45:58 -07:00
|
|
|
{
|
2015-12-02 16:28:36 -08:00
|
|
|
ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
|
2017-01-10 13:23:06 -08:00
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, _surface);
|
2016-10-14 06:36:17 +01:00
|
|
|
struct wsi_interface *iface = device->wsi_device.wsi[surface->platform];
|
2015-10-13 11:45:58 -07:00
|
|
|
|
2016-10-13 05:32:41 +01:00
|
|
|
return iface->get_formats(surface, &device->wsi_device, pSurfaceFormatCount,
|
2016-01-28 15:34:22 -08:00
|
|
|
pSurfaceFormats);
|
2015-12-02 16:28:36 -08:00
|
|
|
}
|
2015-10-13 11:45:58 -07:00
|
|
|
|
2017-03-17 15:07:44 -07:00
|
|
|
VkResult anv_GetPhysicalDeviceSurfaceFormats2KHR(
|
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
|
const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo,
|
|
|
|
|
uint32_t* pSurfaceFormatCount,
|
|
|
|
|
VkSurfaceFormat2KHR* pSurfaceFormats)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
|
|
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, pSurfaceInfo->surface);
|
|
|
|
|
struct wsi_interface *iface = device->wsi_device.wsi[surface->platform];
|
|
|
|
|
|
|
|
|
|
return iface->get_formats2(surface, &device->wsi_device, pSurfaceInfo->pNext,
|
|
|
|
|
pSurfaceFormatCount, pSurfaceFormats);
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_GetPhysicalDeviceSurfacePresentModesKHR(
|
|
|
|
|
VkPhysicalDevice physicalDevice,
|
|
|
|
|
VkSurfaceKHR _surface,
|
|
|
|
|
uint32_t* pPresentModeCount,
|
|
|
|
|
VkPresentModeKHR* pPresentModes)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_physical_device, device, physicalDevice);
|
2017-01-10 13:23:06 -08:00
|
|
|
ICD_FROM_HANDLE(VkIcdSurfaceBase, surface, _surface);
|
2016-10-14 06:36:17 +01:00
|
|
|
struct wsi_interface *iface = device->wsi_device.wsi[surface->platform];
|
2015-10-13 11:45:58 -07:00
|
|
|
|
2016-10-13 05:33:28 +01:00
|
|
|
return iface->get_present_modes(surface, pPresentModeCount,
|
2016-01-28 15:34:22 -08:00
|
|
|
pPresentModes);
|
2015-10-13 11:45:58 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_CreateSwapchainKHR(
|
|
|
|
|
VkDevice _device,
|
|
|
|
|
const VkSwapchainCreateInfoKHR* pCreateInfo,
|
|
|
|
|
const VkAllocationCallbacks* pAllocator,
|
|
|
|
|
VkSwapchainKHR* pSwapchain)
|
2015-10-07 14:13:55 -07:00
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
2017-11-16 12:02:04 +10:00
|
|
|
struct wsi_device *wsi_device = &device->instance->physicalDevice.wsi_device;
|
2016-10-14 02:38:49 +01:00
|
|
|
const VkAllocationCallbacks *alloc;
|
2015-09-01 18:59:06 -07:00
|
|
|
|
2016-10-14 02:38:49 +01:00
|
|
|
if (pAllocator)
|
|
|
|
|
alloc = pAllocator;
|
|
|
|
|
else
|
|
|
|
|
alloc = &device->alloc;
|
2016-03-10 18:35:00 -08:00
|
|
|
|
2017-11-16 12:02:04 +10:00
|
|
|
return wsi_common_create_swapchain(wsi_device, _device, device->fd,
|
|
|
|
|
pCreateInfo, alloc, pSwapchain);
|
2015-09-01 18:59:06 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
void anv_DestroySwapchainKHR(
|
2016-10-14 02:38:49 +01:00
|
|
|
VkDevice _device,
|
2017-11-16 12:02:04 +10:00
|
|
|
VkSwapchainKHR swapchain,
|
2015-12-02 16:28:36 -08:00
|
|
|
const VkAllocationCallbacks* pAllocator)
|
2015-09-01 18:59:06 -07:00
|
|
|
{
|
2016-10-14 02:38:49 +01:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
|
const VkAllocationCallbacks *alloc;
|
2015-09-01 18:59:06 -07:00
|
|
|
|
2016-10-14 02:38:49 +01:00
|
|
|
if (pAllocator)
|
|
|
|
|
alloc = pAllocator;
|
|
|
|
|
else
|
|
|
|
|
alloc = &device->alloc;
|
2016-03-10 18:35:00 -08:00
|
|
|
|
2017-11-16 12:02:04 +10:00
|
|
|
wsi_common_destroy_swapchain(_device, swapchain, alloc);
|
2015-09-01 18:59:06 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_GetSwapchainImagesKHR(
|
|
|
|
|
VkDevice device,
|
2017-11-16 09:56:37 -08:00
|
|
|
VkSwapchainKHR swapchain,
|
2015-12-02 16:28:36 -08:00
|
|
|
uint32_t* pSwapchainImageCount,
|
|
|
|
|
VkImage* pSwapchainImages)
|
2015-09-01 18:59:06 -07:00
|
|
|
{
|
2017-11-16 09:56:37 -08:00
|
|
|
return wsi_common_get_images(swapchain,
|
|
|
|
|
pSwapchainImageCount,
|
2015-12-02 16:28:36 -08:00
|
|
|
pSwapchainImages);
|
2015-09-01 18:59:06 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_AcquireNextImageKHR(
|
2017-08-03 14:18:19 -07:00
|
|
|
VkDevice _device,
|
2015-12-02 16:28:36 -08:00
|
|
|
VkSwapchainKHR _swapchain,
|
|
|
|
|
uint64_t timeout,
|
|
|
|
|
VkSemaphore semaphore,
|
2016-11-02 14:45:37 -07:00
|
|
|
VkFence _fence,
|
2015-12-02 16:28:36 -08:00
|
|
|
uint32_t* pImageIndex)
|
2015-09-01 18:59:06 -07:00
|
|
|
{
|
2017-08-03 14:18:19 -07:00
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
2016-10-14 06:36:17 +01:00
|
|
|
ANV_FROM_HANDLE(wsi_swapchain, swapchain, _swapchain);
|
2016-11-02 14:45:37 -07:00
|
|
|
ANV_FROM_HANDLE(anv_fence, fence, _fence);
|
2015-09-01 18:59:06 -07:00
|
|
|
|
2016-11-02 14:45:37 -07:00
|
|
|
VkResult result = swapchain->acquire_next_image(swapchain, timeout,
|
|
|
|
|
semaphore, pImageIndex);
|
|
|
|
|
|
2017-08-03 14:18:19 -07:00
|
|
|
/* Thanks to implicit sync, the image is ready immediately. However, we
|
|
|
|
|
* should wait for the current GPU state to finish.
|
|
|
|
|
*/
|
2016-11-02 14:45:37 -07:00
|
|
|
if (fence)
|
2017-08-03 14:18:19 -07:00
|
|
|
anv_QueueSubmit(anv_queue_to_handle(&device->queue), 0, NULL, _fence);
|
2016-11-02 14:45:37 -07:00
|
|
|
|
|
|
|
|
return result;
|
2015-09-01 18:59:06 -07:00
|
|
|
}
|
|
|
|
|
|
2015-12-02 16:28:36 -08:00
|
|
|
VkResult anv_QueuePresentKHR(
|
2015-09-01 18:59:06 -07:00
|
|
|
VkQueue _queue,
|
2015-12-02 16:28:36 -08:00
|
|
|
const VkPresentInfoKHR* pPresentInfo)
|
2015-09-01 18:59:06 -07:00
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_queue, queue, _queue);
|
2017-11-16 09:46:50 -08:00
|
|
|
struct anv_physical_device *pdevice =
|
|
|
|
|
&queue->device->instance->physicalDevice;
|
2015-09-01 18:59:06 -07:00
|
|
|
|
2017-11-16 09:46:50 -08:00
|
|
|
return wsi_common_queue_present(&pdevice->wsi_device,
|
|
|
|
|
anv_device_to_handle(queue->device),
|
|
|
|
|
_queue, 0,
|
|
|
|
|
pPresentInfo);
|
2015-09-01 18:59:06 -07:00
|
|
|
}
|