Enum
VkProvokingVertexModeEXT
Specify which vertex in a primitive is the provoking vertex
Possible values of
VkPipelineRasterizationProvokingVertexStateCreateInfoEXT::provokingVertexMode
are:
typedef enum VkProvokingVertexModeEXT {
VK_PROVOKING_VERTEX_MODE_FIRST_VERTEX_EXT = 0,
VK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXT = 1,
} VkProvokingVertexModeEXT;
pub struct ProvokingVertexModeEXT(u32);
impl ProvokingVertexModeEXT {
pub const FIRST_VERTEX: Self = 0;
pub const LAST_VERTEX: Self = 1;
}
VK_PROVOKING_VERTEX_MODE_FIRST_VERTEX_EXTspecifies that the provoking vertex is the first non-adjacency vertex in the list of vertices used by a primitive.VK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXTspecifies that the provoking vertex is the last non-adjacency vertex in the list of vertices used by a primitive.
These modes are described more precisely in Primitive Topologies.
Parent
VK_EXT_provoking_vertexType
Enum