Show More
Commit Description:
Tweak calculations....
Commit Description:
Tweak calculations.
Prevent a negative number of visitors and separate visitors from donors.
References:
File last commit:
Show/Diff file:
Action:
FNA/lib/FNA3D/Vulkan-Headers/include/vulkan/vulkan_fuchsia.h
47 lines | 1.4 KiB | text/x-c | CLexer
47 lines | 1.4 KiB | text/x-c | CLexer
r690 | #ifndef VULKAN_FUCHSIA_H_ | |||
#define VULKAN_FUCHSIA_H_ 1 | ||||
/* | ||||
** Copyright (c) 2015-2020 The Khronos Group Inc. | ||||
** | ||||
** SPDX-License-Identifier: Apache-2.0 | ||||
*/ | ||||
/* | ||||
** This header is generated from the Khronos Vulkan XML API Registry. | ||||
** | ||||
*/ | ||||
#ifdef __cplusplus | ||||
extern "C" { | ||||
#endif | ||||
#define VK_FUCHSIA_imagepipe_surface 1 | ||||
#define VK_FUCHSIA_IMAGEPIPE_SURFACE_SPEC_VERSION 1 | ||||
#define VK_FUCHSIA_IMAGEPIPE_SURFACE_EXTENSION_NAME "VK_FUCHSIA_imagepipe_surface" | ||||
typedef VkFlags VkImagePipeSurfaceCreateFlagsFUCHSIA; | ||||
typedef struct VkImagePipeSurfaceCreateInfoFUCHSIA { | ||||
VkStructureType sType; | ||||
const void* pNext; | ||||
VkImagePipeSurfaceCreateFlagsFUCHSIA flags; | ||||
zx_handle_t imagePipeHandle; | ||||
} VkImagePipeSurfaceCreateInfoFUCHSIA; | ||||
typedef VkResult (VKAPI_PTR *PFN_vkCreateImagePipeSurfaceFUCHSIA)(VkInstance instance, const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSurfaceKHR* pSurface); | ||||
#ifndef VK_NO_PROTOTYPES | ||||
VKAPI_ATTR VkResult VKAPI_CALL vkCreateImagePipeSurfaceFUCHSIA( | ||||
VkInstance instance, | ||||
const VkImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, | ||||
const VkAllocationCallbacks* pAllocator, | ||||
VkSurfaceKHR* pSurface); | ||||
#endif | ||||
#ifdef __cplusplus | ||||
} | ||||
#endif | ||||
#endif | ||||