vulkan_wayland.h revision ed98bd31
101e04c3fSmrg#ifndef VULKAN_WAYLAND_H_
201e04c3fSmrg#define VULKAN_WAYLAND_H_ 1
301e04c3fSmrg
401e04c3fSmrg#ifdef __cplusplus
501e04c3fSmrgextern "C" {
601e04c3fSmrg#endif
701e04c3fSmrg
801e04c3fSmrg/*
9ed98bd31Smaya** Copyright (c) 2015-2019 The Khronos Group Inc.
1001e04c3fSmrg**
1101e04c3fSmrg** Licensed under the Apache License, Version 2.0 (the "License");
1201e04c3fSmrg** you may not use this file except in compliance with the License.
1301e04c3fSmrg** You may obtain a copy of the License at
1401e04c3fSmrg**
1501e04c3fSmrg**     http://www.apache.org/licenses/LICENSE-2.0
1601e04c3fSmrg**
1701e04c3fSmrg** Unless required by applicable law or agreed to in writing, software
1801e04c3fSmrg** distributed under the License is distributed on an "AS IS" BASIS,
1901e04c3fSmrg** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2001e04c3fSmrg** See the License for the specific language governing permissions and
2101e04c3fSmrg** limitations under the License.
2201e04c3fSmrg*/
2301e04c3fSmrg
2401e04c3fSmrg/*
2501e04c3fSmrg** This header is generated from the Khronos Vulkan XML API Registry.
2601e04c3fSmrg**
2701e04c3fSmrg*/
2801e04c3fSmrg
2901e04c3fSmrg
30ed98bd31Smaya
3101e04c3fSmrg#define VK_KHR_wayland_surface 1
3201e04c3fSmrg#define VK_KHR_WAYLAND_SURFACE_SPEC_VERSION 6
3301e04c3fSmrg#define VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME "VK_KHR_wayland_surface"
3401e04c3fSmrgtypedef VkFlags VkWaylandSurfaceCreateFlagsKHR;
3501e04c3fSmrgtypedef struct VkWaylandSurfaceCreateInfoKHR {
3601e04c3fSmrg    VkStructureType                   sType;
3701e04c3fSmrg    const void*                       pNext;
3801e04c3fSmrg    VkWaylandSurfaceCreateFlagsKHR    flags;
3901e04c3fSmrg    struct wl_display*                display;
4001e04c3fSmrg    struct wl_surface*                surface;
4101e04c3fSmrg} VkWaylandSurfaceCreateInfoKHR;
4201e04c3fSmrg
4301e04c3fSmrgtypedef VkResult (VKAPI_PTR *PFN_vkCreateWaylandSurfaceKHR)(VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
4401e04c3fSmrgtypedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, struct wl_display* display);
4501e04c3fSmrg
4601e04c3fSmrg#ifndef VK_NO_PROTOTYPES
4701e04c3fSmrgVKAPI_ATTR VkResult VKAPI_CALL vkCreateWaylandSurfaceKHR(
4801e04c3fSmrg    VkInstance                                  instance,
4901e04c3fSmrg    const VkWaylandSurfaceCreateInfoKHR*        pCreateInfo,
5001e04c3fSmrg    const VkAllocationCallbacks*                pAllocator,
5101e04c3fSmrg    VkSurfaceKHR*                               pSurface);
5201e04c3fSmrg
5301e04c3fSmrgVKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceWaylandPresentationSupportKHR(
5401e04c3fSmrg    VkPhysicalDevice                            physicalDevice,
5501e04c3fSmrg    uint32_t                                    queueFamilyIndex,
5601e04c3fSmrg    struct wl_display*                          display);
5701e04c3fSmrg#endif
5801e04c3fSmrg
5901e04c3fSmrg#ifdef __cplusplus
6001e04c3fSmrg}
6101e04c3fSmrg#endif
6201e04c3fSmrg
6301e04c3fSmrg#endif
64