Class VkCommandBufferAllocateInfo

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


    public class VkCommandBufferAllocateInfo
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Contains information about how a command buffer should be allocated.

    Valid Usage
    • sType must be STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO
    • pNext must be NULL
    • commandPool must be a valid VkCommandPool handle
    • level must be a valid VkCommandBufferLevel value
    • commandBufferCount must be greater than 0

    Member documentation

    Layout

    struct VkCommandBufferAllocateInfo {
        VkStructureType sType;
        const void * pNext;
        VkCommandPool commandPool;
        VkCommandBufferLevel level;
        uint32_t commandBufferCount;
    }