Structures

VkBufferConstraintsInfoFUCHSIA

Structure buffer-based buffer collection constraints

The VkBufferConstraintsInfoFUCHSIA structure is defined as:

typedef struct VkBufferConstraintsInfoFUCHSIA {
    VkStructureType sType;
    const void* pNext;
    VkBufferCreateInfo createInfo;
    VkFormatFeatureFlags requiredFormatFeatures;
    VkBufferCollectionConstraintsInfoFUCHSIA bufferCollectionConstraints;
} VkBufferConstraintsInfoFUCHSIA;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure
  • pBufferCreateInfo a pointer to a VkBufferCreateInfo struct describing the buffer attributes for the buffer collection
  • requiredFormatFeatures bitmask of VkFormatFeatureFlagBits required features of the buffers in the buffer collection
  • bufferCollectionConstraints is used to supply parameters for the negotiation and allocation of the buffer collection

Valid Usage

VUID-VkBufferConstraintsInfoFUCHSIA-requiredFormatFeatures-06404

The requiredFormatFeatures bitmask of VkFormatFeatureFlagBits must be chosen from among the buffer compatible format features listed in buffer compatible format features

Valid Usage (Implicit)