1#ifndef VULKAN_WAYLAND_H_
2#define VULKAN_WAYLAND_H_ 1
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8/*
9** Copyright (c) 2015-2019 The Khronos Group Inc.
10**
11** Licensed under the Apache License, Version 2.0 (the "License");
12** you may not use this file except in compliance with the License.
13** You may obtain a copy of the License at
14**
15**     http://www.apache.org/licenses/LICENSE-2.0
16**
17** Unless required by applicable law or agreed to in writing, software
18** distributed under the License is distributed on an "AS IS" BASIS,
19** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20** See the License for the specific language governing permissions and
21** limitations under the License.
22*/
23
24/*
25** This header is generated from the Khronos Vulkan XML API Registry.
26**
27*/
28
29
30
31#define VK_KHR_wayland_surface 1
32#define VK_KHR_WAYLAND_SURFACE_SPEC_VERSION 6
33#define VK_KHR_WAYLAND_SURFACE_EXTENSION_NAME "VK_KHR_wayland_surface"
34typedef VkFlags VkWaylandSurfaceCreateFlagsKHR;
35typedef struct VkWaylandSurfaceCreateInfoKHR {
36    VkStructureType                   sType;
37    const void*                       pNext;
38    VkWaylandSurfaceCreateFlagsKHR    flags;
39    struct wl_display*                display;
40    struct wl_surface*                surface;
41} VkWaylandSurfaceCreateInfoKHR;
42
43typedef VkResult (VKAPI_PTR *PFN_vkCreateWaylandSurfaceKHR)(VkInstance instance, const VkWaylandSurfaceCreateInfoKHR* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
44typedef VkBool32 (VKAPI_PTR *PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR)(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, struct wl_display* display);
45
46#ifndef VK_NO_PROTOTYPES
47VKAPI_ATTR VkResult VKAPI_CALL vkCreateWaylandSurfaceKHR(
48    VkInstance                                  instance,
49    const VkWaylandSurfaceCreateInfoKHR*        pCreateInfo,
50    const VkAllocationCallbacks*                pAllocator,
51    VkSurfaceKHR*                               pSurface);
52
53VKAPI_ATTR VkBool32 VKAPI_CALL vkGetPhysicalDeviceWaylandPresentationSupportKHR(
54    VkPhysicalDevice                            physicalDevice,
55    uint32_t                                    queueFamilyIndex,
56    struct wl_display*                          display);
57#endif
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif
64