C Specification
The VkSurfaceCapabilitiesPresentBarrierNV
structure is defined as:
// Provided by VK_NV_present_barrier
typedef struct VkSurfaceCapabilitiesPresentBarrierNV {
VkStructureType sType;
void* pNext;
VkBool32 presentBarrierSupported;
} VkSurfaceCapabilitiesPresentBarrierNV;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
presentBarrierSupported
is a boolean describing whether the surface is able to make use of the present barrier feature.
Description
This structure can be included in the pNext
chain of
VkSurfaceCapabilities2KHR to determine support for present barrier
access.
If presentBarrierSupported
is VK_FALSE
, it indicates that the
present barrier feature is not obtainable for this surface.
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.