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;
pub struct PipelineTessellationDomainOriginStateCreateInfo {
s_type: vk::StructureType,
p_next: *const c_void,
domain_origin: vk::TessellationDomainOrigin,
}
typedef VkPipelineTessellationDomainOriginStateCreateInfo VkPipelineTessellationDomainOriginStateCreateInfoKHR;
type PipelineTessellationDomainOriginStateCreateInfoKHR = vk::PipelineTessellationDomainOriginStateCreateInfo;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.domainOriginis 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