Class VkPhysicalDeviceTransformFeedbackPropertiesEXT

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPhysicalDeviceTransformFeedbackPropertiesEXT extends Struct<VkPhysicalDeviceTransformFeedbackPropertiesEXT> implements NativeResource
Structure describing transform feedback properties that can be supported by an implementation.
Description

If the VkPhysicalDeviceTransformFeedbackPropertiesEXT structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceTransformFeedbackPropertiesEXT {
     VkStructureType sType();
     void * pNext();
     uint32_t maxTransformFeedbackStreams();
     uint32_t maxTransformFeedbackBuffers();
     VkDeviceSize maxTransformFeedbackBufferSize();
     uint32_t maxTransformFeedbackStreamDataSize();
     uint32_t maxTransformFeedbackBufferDataSize();
     uint32_t maxTransformFeedbackBufferDataStride();
     VkBool32 transformFeedbackQueries();
     VkBool32 transformFeedbackStreamsLinesTriangles();
     VkBool32 transformFeedbackRasterizationStreamSelect();
     VkBool32 transformFeedbackDraw();
 }