Class VkSparseBufferMemoryBindInfo

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


    public class VkSparseBufferMemoryBindInfo
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Describes a memory binding to a VkBuffer object.

    Valid Usage
    • buffer must be a valid VkBuffer handle
    • pBinds must be a pointer to an array of bindCount valid VkSparseMemoryBind structures
    • bindCount must be greater than 0

    Member documentation

    • buffer – the VkBuffer object to be bound
    • bindCount – the number of VkSparseMemoryBind structures in the pBinds array
    • pBinds – a pointer to array of VkSparseMemoryBind structures

    Layout

    struct VkSparseBufferMemoryBindInfo {
        VkBuffer buffer;
        uint32_t bindCount;
        const VkSparseMemoryBind * pBinds;
    }