Class VkDeviceQueueCreateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkDeviceQueueCreateInfo extends Struct<VkDeviceQueueCreateInfo> implements NativeResource
Structure specifying parameters of a newly created device queue.
Valid Usage
Valid Usage (Implicit)
See Also

VkDeviceCreateInfo

Layout


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