Structures
VkSurfaceCapabilitiesFullScreenExclusiveEXT
Structure describing full screen exclusive capabilities of a surface
The VkSurfaceCapabilitiesFullScreenExclusiveEXT structure is defined
as:
typedef struct VkSurfaceCapabilitiesFullScreenExclusiveEXT {
VkStructureType sType;
void* pNext;
VkBool32 fullScreenExclusiveSupported;
} VkSurfaceCapabilitiesFullScreenExclusiveEXT;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.fullScreenExclusiveControlSupportedis a boolean describing whether the surface is able to make use of exclusive full-screen access.
This structure can be included in the pNext chain of
VkSurfaceCapabilities2KHR to determine support for exclusive
full-screen access.
If fullScreenExclusiveSupported is VK_FALSE, it indicates that
exclusive full-screen access is not obtainable for this surface.
Applications must not attempt to create swapchains with
VK_FULL_SCREEN_EXCLUSIVE_APPLICATION_CONTROLLED_EXT set if
fullScreenExclusiveSupported is VK_FALSE.
Valid Usage (Implicit)
VUID-VkSurfaceCapabilitiesFullScreenExclusiveEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT