Structures

VkBufferDeviceAddressAlignmentAllocateInfoVALVE

Specify minimum buffer device address alignment

The VkBufferDeviceAddressAlignmentAllocateInfoVALVE structure is defined as:

typedef struct VkBufferDeviceAddressAlignmentAllocateInfoVALVE {
    VkStructureType sType;
    void* pNext;
    uint32_t alignment;
} VkBufferDeviceAddressAlignmentAllocateInfoVALVE;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • alignment is the minimum alignment that implementation must allocate for any buffer device addresses.

If this struct is not present in a pNext chain, alignment is assumed to be 0. If alignment is 0, this alignment request is ignored.

Valid Usage (Implicit)

VUID-VkBufferDeviceAddressAlignmentAllocateInfoVALVE-sType-sType

sType must be VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_ALIGNMENT_ALLOCATE_INFO_VALVE