C Specification
The VkSwapchainFlagsSurfaceCapabilitiesEXT structure is defined as:
// Provided by VK_EXT_multisampled_render_to_swapchain
typedef struct VkSwapchainFlagsSurfaceCapabilitiesEXT {
VkStructureType sType;
void* pNext;
VkSwapchainCreateFlagsKHR swapchainSupportedFlags;
} VkSwapchainFlagsSurfaceCapabilitiesEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
swapchainSupportedFlagsis a bitmask of VkSwapchainCreateFlagsKHR representing the supported flags in VkSwapchainCreateInfoKHR when creating a swapchain for the surface on the specified device. If a VkSurfacePresentModeKHR structure is included in thepNextchain ofpSurfaceInfoin vkGetPhysicalDeviceSurfaceCapabilities2KHR, this value represents the supported flags for the specified present mode and those compatible with it as returned in VkSurfacePresentModeCompatibilityKHR.
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.