Structures
VkPipelineTessellationDomainOriginStateCreateInfo
Structure specifying the orientation of the tessellation domain
The VkPipelineTessellationDomainOriginStateCreateInfo
structure is
defined as:
typedef struct VkPipelineTessellationDomainOriginStateCreateInfo {
VkStructureType sType;
const void* pNext;
VkTessellationDomainOrigin domainOrigin;
} VkPipelineTessellationDomainOriginStateCreateInfo;
or the equivalent
typedef VkPipelineTessellationDomainOriginStateCreateInfo VkPipelineTessellationDomainOriginStateCreateInfoKHR;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.domainOrigin
is a VkTessellationDomainOrigin value controlling the origin of the tessellation domain space.
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
VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT
.
Valid Usage (Implicit)
VUID-VkPipelineTessellationDomainOriginStateCreateInfo-sType-sType
sType
must be VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO
VUID-VkPipelineTessellationDomainOriginStateCreateInfo-domainOrigin-parameter
domainOrigin
must be a valid VkTessellationDomainOrigin value