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

65 lines
1.7 KiB
Plaintext
Raw Normal View History

// 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/
2016-02-16 09:53:44 +00:00
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.
2016-02-16 09:53:44 +00:00
The sname:VkCommandBufferAllocateInfo structure is defined as:
2016-02-16 09:53:44 +00:00
include::../structs/VkCommandBufferAllocateInfo.txt[]
2016-02-16 09:53:44 +00:00
Members
-------
2016-02-16 09:53:44 +00:00
* 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.
2016-02-16 09:53:44 +00:00
Description
-----------
include::../validity/structs/VkCommandBufferAllocateInfo.txt[]
2016-02-16 09:53:44 +00:00
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.
2016-02-16 09:53:44 +00:00
include::footer.txt[]