Vulkan-Docs/doc/specs/vulkan/man/VkCommandBufferAllocateInfo...

65 lines
1.7 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/
VkCommandBufferAllocateInfo(3)
==============================
Name
----
VkCommandBufferAllocateInfo - Structure specifying the allocation parameters for command buffer object.
C Specification
---------------
// refBegin VkCommandBufferAllocateInfo Structure specifying the allocation parameters for command buffer object.
The sname:VkCommandBufferAllocateInfo structure is defined as:
include::../structs/VkCommandBufferAllocateInfo.txt[]
Members
-------
* pname:sType is the type of this structure.
* pname:pNext is `NULL` or a pointer to an extension-specific structure.
* pname:commandPool is the name of the command pool that the command
buffers allocate their memory from.
* pname:level determines whether the command buffers are primary or
secondary command buffers. Possible values include:
+
--
// refBegin VkCommandBufferLevel - Structure specifying a command buffer level
include::../enums/VkCommandBufferLevel.txt[]
--
+
* pname:commandBufferCount is the number of command buffers to allocate
from the pool.
Description
-----------
include::../validity/structs/VkCommandBufferAllocateInfo.txt[]
See Also
--------
elink:VkCommandBufferLevel, slink:VkCommandPool, elink:VkStructureType, flink:vkAllocateCommandBuffers
Document Notes
--------------
For more information, see the Vulkan Specification at URL
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkCommandBufferAllocateInfo
This page is extracted from the Vulkan Specification.
Fixes and changes should be made to the Specification,not directly.
include::footer.txt[]