Class VkPipelineTessellationDomainOriginStateCreateInfo

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
    Direct Known Subclasses:
    VkPipelineTessellationDomainOriginStateCreateInfoKHR

    public class VkPipelineTessellationDomainOriginStateCreateInfo
    extends org.lwjgl.system.Struct
    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 were TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT.

    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • domainOrigin – controls the origin of the tessellation domain space, and is of type VkTessellationDomainOrigin.

    Layout

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