C Specification
The VkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR
structure
is defined as:
// Provided by VK_KHR_fragment_shader_barycentric
typedef struct VkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR {
VkStructureType sType;
void* pNext;
VkBool32 triStripVertexOrderIndependentOfProvokingVertex;
} VkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR;
Members
-
triStripVertexOrderIndependentOfProvokingVertex
indicates that the implementation does not change its vertex numbering for triangle strip primitives when the provoking vertex mode isVK_PROVOKING_VERTEX_MODE_LAST_VERTEX_EXT
, as shown in the last vertex table.
Description
If the VkPhysicalDeviceFragmentShaderBarycentricPropertiesKHR
structure is included in the pNext
chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.