|
1501
|
1 #ifndef VULKAN_VI_H_
|
|
|
2 #define VULKAN_VI_H_ 1
|
|
|
3
|
|
|
4 /*
|
|
|
5 ** Copyright 2015-2025 The Khronos Group Inc.
|
|
|
6 **
|
|
|
7 ** SPDX-License-Identifier: Apache-2.0
|
|
|
8 */
|
|
|
9
|
|
|
10 /*
|
|
|
11 ** This header is generated from the Khronos Vulkan XML API Registry.
|
|
|
12 **
|
|
|
13 */
|
|
|
14
|
|
|
15
|
|
|
16 #ifdef __cplusplus
|
|
|
17 extern "C" {
|
|
|
18 #endif
|
|
|
19
|
|
|
20
|
|
|
21
|
|
|
22 // VK_NN_vi_surface is a preprocessor guard. Do not pass it to API calls.
|
|
|
23 #define VK_NN_vi_surface 1
|
|
|
24 #define VK_NN_VI_SURFACE_SPEC_VERSION 1
|
|
|
25 #define VK_NN_VI_SURFACE_EXTENSION_NAME "VK_NN_vi_surface"
|
|
|
26 typedef VkFlags VkViSurfaceCreateFlagsNN;
|
|
|
27 typedef struct VkViSurfaceCreateInfoNN {
|
|
|
28 VkStructureType sType;
|
|
|
29 const void* pNext;
|
|
|
30 VkViSurfaceCreateFlagsNN flags;
|
|
|
31 void* window;
|
|
|
32 } VkViSurfaceCreateInfoNN;
|
|
|
33
|
|
|
34 typedef VkResult (VKAPI_PTR *PFN_vkCreateViSurfaceNN)(VkInstance instance, const VkViSurfaceCreateInfoNN* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface);
|
|
|
35
|
|
|
36 #ifndef VK_NO_PROTOTYPES
|
|
|
37 #ifndef VK_ONLY_EXPORTED_PROTOTYPES
|
|
|
38 VKAPI_ATTR VkResult VKAPI_CALL vkCreateViSurfaceNN(
|
|
|
39 VkInstance instance,
|
|
|
40 const VkViSurfaceCreateInfoNN* pCreateInfo,
|
|
|
41 const VkAllocationCallbacks* pAllocator,
|
|
|
42 VkSurfaceKHR* pSurface);
|
|
|
43 #endif
|
|
|
44 #endif
|
|
|
45
|
|
|
46 #ifdef __cplusplus
|
|
|
47 }
|
|
|
48 #endif
|
|
|
49
|
|
|
50 #endif
|