66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
|
|
// Creative Commons Attribution 4.0 International License; see
|
|
// http://creativecommons.org/licenses/by/4.0/
|
|
|
|
VkDeviceQueueCreateInfo(3)
|
|
==========================
|
|
|
|
Name
|
|
----
|
|
VkDeviceQueueCreateInfo - Structure specifying parameters of a newly created device queue
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin VkDeviceQueueCreateInfo - Structure specifying parameters of a newly created device queue
|
|
|
|
The sname:VkDeviceQueueCreateInfo structure is defined as:
|
|
|
|
include::../api/structs/VkDeviceQueueCreateInfo.txt[]
|
|
|
|
|
|
Members
|
|
-------
|
|
|
|
* pname:sType is the type of this structure.
|
|
* pname:pNext is `NULL` or a pointer to an extension-specific structure.
|
|
* pname:flags is reserved for future use.
|
|
* pname:queueFamilyIndex is an unsigned integer indicating the index of
|
|
the queue family to create on this device. This index
|
|
corresponds to the index of an element of the
|
|
pname:pQueueFamilyProperties array that was returned by
|
|
fname:vkGetPhysicalDeviceQueueFamilyProperties.
|
|
* pname:queueCount is an unsigned integer specifying the number of
|
|
queues to create in the queue family indicated by
|
|
pname:queueFamilyIndex.
|
|
* pname:pQueuePriorities is an array of pname:queueCount
|
|
normalized floating point values, specifying priorities of work that
|
|
will be submitted to each created queue. See
|
|
<<devsandqueues-priority,Queue Priority>> for more information.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
include::../validity/structs/VkDeviceQueueCreateInfo.txt[]
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
slink:VkDeviceCreateInfo, elink:VkDeviceQueueCreateFlags, elink:VkStructureType
|
|
|
|
|
|
Document Notes
|
|
--------------
|
|
|
|
For more information, see the Vulkan Specification at URL
|
|
|
|
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkDeviceQueueCreateInfo
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|