Class VkPhysicalDeviceProvokingVertexFeaturesEXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPhysicalDeviceProvokingVertexFeaturesEXT>
org.lwjgl.vulkan.VkPhysicalDeviceProvokingVertexFeaturesEXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPhysicalDeviceProvokingVertexFeaturesEXT extends org.lwjgl.system.Struct<VkPhysicalDeviceProvokingVertexFeaturesEXT> implements org.lwjgl.system.NativeResource
Structure describing the provoking vertex features that can be supported by an implementation.
Description

If the VkPhysicalDeviceProvokingVertexFeaturesEXT structure is included in the pNext chain of the VkPhysicalDeviceFeatures2 structure passed to GetPhysicalDeviceFeatures2, it is filled in to indicate whether each corresponding feature is supported. VkPhysicalDeviceProvokingVertexFeaturesEXT can also be used in the pNext chain of VkDeviceCreateInfo to selectively enable these features.

When VkPhysicalDeviceProvokingVertexFeaturesEXT is in the pNext chain of VkDeviceCreateInfo but the transformFeedback feature is not enabled, the value of transformFeedbackPreservesProvokingVertex is ignored.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceProvokingVertexFeaturesEXT {
     VkStructureType sType();
     void * pNext();
     VkBool32 provokingVertexLast();
     VkBool32 transformFeedbackPreservesProvokingVertex();
 }