Class VkSparseImageMemoryBindInfo

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


    public class VkSparseImageMemoryBindInfo
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Describes a memory binding to a sparse image block of a VkImage object.

    Valid Usage
    • image must be a valid VkImage handle
    • pBinds must be a pointer to an array of bindCount valid VkSparseImageMemoryBind structures
    • bindCount must be greater than 0

    Member documentation

    • image – the VkImage object to be bound
    • bindCount – the number of VkSparseImageMemoryBind structures in pBinds array
    • pBinds – a pointer to array of VkSparseImageMemoryBind structures

    Layout

    struct VkSparseImageMemoryBindInfo {
        VkImage image;
        uint32_t bindCount;
        const VkSparseImageMemoryBind * pBinds;
    }