C Specification
The VkPipelineViewportExclusiveScissorStateCreateInfoNV
structure is
defined as:
// Provided by VK_NV_scissor_exclusive
typedef struct VkPipelineViewportExclusiveScissorStateCreateInfoNV {
VkStructureType sType;
const void* pNext;
uint32_t exclusiveScissorCount;
const VkRect2D* pExclusiveScissors;
} VkPipelineViewportExclusiveScissorStateCreateInfoNV;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
exclusiveScissorCount
is the number of exclusive scissor rectangles. -
pExclusiveScissors
is a pointer to an array of VkRect2D structures defining exclusive scissor rectangles.
Description
If the VK_DYNAMIC_STATE_EXCLUSIVE_SCISSOR_NV
dynamic state is enabled
for a pipeline, the pExclusiveScissors
member is ignored.
When this structure is included in the pNext
chain of
VkGraphicsPipelineCreateInfo, it defines parameters of the exclusive
scissor test.
If this structure is not included in the pNext
chain, it is equivalent
to specifying this structure with a exclusiveScissorCount
of 0
.
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.