Class VkPipelineTessellationDomainOriginStateCreateInfo

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPipelineTessellationDomainOriginStateCreateInfo>
org.lwjgl.vulkan.VkPipelineTessellationDomainOriginStateCreateInfo
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
Direct Known Subclasses:
VkPipelineTessellationDomainOriginStateCreateInfoKHR

public class VkPipelineTessellationDomainOriginStateCreateInfo extends org.lwjgl.system.Struct<VkPipelineTessellationDomainOriginStateCreateInfo> implements org.lwjgl.system.NativeResource
Structure specifying the orientation of the tessellation domain.
Description

If the VkPipelineTessellationDomainOriginStateCreateInfo structure is included in the pNext chain of VkPipelineTessellationStateCreateInfo, it controls the origin of the tessellation domain. If this structure is not present, it is as if domainOrigin was TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT.

Valid Usage (Implicit)

Layout


 struct VkPipelineTessellationDomainOriginStateCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkTessellationDomainOrigin domainOrigin();
 }