Struct vulkan_rs::VkDeviceQueueCreateInfo [] [src]

#[repr(C)]
pub struct VkDeviceQueueCreateInfo { pub sType: VkStructureType, pub pNext: *const c_void, pub flags: VkDeviceQueueCreateFlags, pub queueFamilyIndex: u32, pub queueCount: u32, pub pQueuePriorities: *const f32, }

Structure specifying parameters of a newly created device queue

Fields

the type of this structure

NULL or a pointer to an extension-specific structure

reserved for future use

an unsigned integer indicating the index of the queue family to create on this device

an unsigned integer specifying the number of queues to create in the queue family indicated by queueFamilyIndex

an array of queueCount normalized floating point values, specifying priorities of work that will be submitted to each created queue

Trait Implementations

impl Default for VkDeviceQueueCreateInfo
[src]

Returns the "default value" for a type. Read more