Class VkDeviceQueueCreateInfo

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


    public class VkDeviceQueueCreateInfo
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Contains information about how to create a device queue.

    Valid Usage

    Member documentation

    • sType – the type of this structure. Must be: STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO
    • pNext – reserved for use by extensions
    • flags – reserved for future use
    • queueFamilyIndex – an unsigned integer indicating the index of the queue family to create on this device
    • queueCount – an unsigned integer specifying the number of queues to create in the queue family indicated by queueFamilyIndex
    • pQueuePriorities – an array of queueCount normalized floating point values, specifying priorities of work that will be submitted to each created queue

    Layout

    struct VkDeviceQueueCreateInfo {
        VkStructureType sType;
        const void * pNext;
        VkDeviceQueueCreateFlags flags;
        uint32_t queueFamilyIndex;
        uint32_t queueCount;
        const float * pQueuePriorities;
    }