Class VkPhysicalDeviceTransformFeedbackFeaturesEXT

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkPhysicalDeviceTransformFeedbackFeaturesEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing transform feedback features that can be supported by an implementation.
    Description

    If the VkPhysicalDeviceTransformFeedbackFeaturesEXT structure is included in the pNext chain of VkPhysicalDeviceFeatures2, it is filled with values indicating whether each feature is supported. VkPhysicalDeviceTransformFeedbackFeaturesEXT can also be used in the pNext chain of VkDeviceCreateInfo to enable features.

    Valid Usage (Implicit)

    Member documentation

    • transformFeedback – indicates whether the implementation supports transform feedback and shader modules can declare the TransformFeedback capability.
    • geometryStreams – indicates whether the implementation supports the GeometryStreams SPIR-V capability.

    Layout

    
     struct VkPhysicalDeviceTransformFeedbackFeaturesEXT {
         VkStructureType sType;
         void * pNext;
         VkBool32 transformFeedback;
         VkBool32 geometryStreams;
     }