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;
VK_PROVOKING_VERTEX_MODE_FIRST_VERTEX_EXT
specifies 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_EXT
specifies 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.