Class VkPipelineTessellationStateCreateInfo

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

public class VkPipelineTessellationStateCreateInfo extends org.lwjgl.system.Struct<VkPipelineTessellationStateCreateInfo> implements org.lwjgl.system.NativeResource
Structure specifying parameters of a newly created pipeline tessellation state.
Valid Usage
  • patchControlPoints must be greater than zero and less than or equal to VkPhysicalDeviceLimits::maxTessellationPatchSize
Valid Usage (Implicit)
See Also

VkGraphicsPipelineCreateInfo, VkGraphicsShaderGroupCreateInfoNV

Layout


 struct VkPipelineTessellationStateCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkPipelineTessellationStateCreateFlags flags();
     uint32_t patchControlPoints();
 }