C Specification
If the bound graphics pipeline state was created with the
VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT
dynamic state enabled then the
scissor count and scissor rectangular bounds are set dynamically by calling:
// Provided by VK_EXT_extended_dynamic_state
void vkCmdSetScissorWithCountEXT(
VkCommandBuffer commandBuffer,
uint32_t scissorCount,
const VkRect2D* pScissors);
Parameters
-
commandBuffer
is the command buffer into which the command will be recorded. -
scissorCount
specifies the scissor count. -
pScissors
specifies the scissors to use for drawing.
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.