Path: blob/21.2-virgl/src/panfrost/vulkan/panvk_wsi_wayland.c
4560 views
/*1* Copyright © 2021 Collabora Ltd.2*3* Derived from turnip driver:4* Copyright © 2016 Red Hat5* Copyright © 2015 Intel Corporation6*7* Permission is hereby granted, free of charge, to any person obtaining a8* copy of this software and associated documentation files (the "Software"),9* to deal in the Software without restriction, including without limitation10* the rights to use, copy, modify, merge, publish, distribute, sublicense,11* and/or sell copies of the Software, and to permit persons to whom the12* Software is furnished to do so, subject to the following conditions:13*14* The above copyright notice and this permission notice (including the next15* paragraph) shall be included in all copies or substantial portions of the16* Software.17*18* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR19* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,20* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL21* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER22* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING23* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER24* DEALINGS IN THE SOFTWARE.25*/2627#include "panvk_private.h"2829#include "wsi_common_wayland.h"3031VkBool3232panvk_GetPhysicalDeviceWaylandPresentationSupportKHR(33VkPhysicalDevice physicalDevice,34uint32_t queueFamilyIndex,35struct wl_display *display)36{37VK_FROM_HANDLE(panvk_physical_device, physical_device, physicalDevice);3839return wsi_wl_get_presentation_support(&physical_device->wsi_device,40display);41}4243VkResult44panvk_CreateWaylandSurfaceKHR(VkInstance _instance,45const VkWaylandSurfaceCreateInfoKHR *pCreateInfo,46const VkAllocationCallbacks *pAllocator,47VkSurfaceKHR *pSurface)48{49VK_FROM_HANDLE(panvk_instance, instance, _instance);50const VkAllocationCallbacks *alloc;51assert(pCreateInfo->sType ==52VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR);5354if (pAllocator)55alloc = pAllocator;56else57alloc = &instance->vk.alloc;5859return wsi_create_wl_surface(alloc, pCreateInfo, pSurface);60}616263