Class VkPipelineInputAssemblyStateCreateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPipelineInputAssemblyStateCreateInfo extends Struct<VkPipelineInputAssemblyStateCreateInfo> implements NativeResource
Structure specifying parameters of a newly created pipeline input assembly state.
Description

Restarting the assembly of primitives discards the most recent index values if those elements formed an incomplete primitive, and restarts the primitive assembly using the subsequent indices, but only assembling the immediately following element through the end of the originally specified elements. The primitive restart index value comparison is performed before adding the vertexOffset value to the index value.

Valid Usage
Valid Usage (Implicit)
See Also

VkGraphicsPipelineCreateInfo

Layout


 struct VkPipelineInputAssemblyStateCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkPipelineInputAssemblyStateCreateFlags flags();
     VkPrimitiveTopology topology();
     VkBool32 primitiveRestartEnable();
 }