Class VkPipelineViewportExclusiveScissorStateCreateInfoNV

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPipelineViewportExclusiveScissorStateCreateInfoNV>
org.lwjgl.vulkan.VkPipelineViewportExclusiveScissorStateCreateInfoNV
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPipelineViewportExclusiveScissorStateCreateInfoNV extends org.lwjgl.system.Struct<VkPipelineViewportExclusiveScissorStateCreateInfoNV> implements org.lwjgl.system.NativeResource
Structure specifying parameters controlling exclusive scissor testing.
Description

If the 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 an exclusiveScissorCount of 0.

Valid Usage
Valid Usage (Implicit)
See Also

VkRect2D

Layout


 struct VkPipelineViewportExclusiveScissorStateCreateInfoNV {
     VkStructureType sType();
     void const * pNext();
     uint32_t exclusiveScissorCount();
     VkRect2D const * pExclusiveScissors();
 }