// 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/ VkCommandBuffer(3) ================== Name ---- VkCommandBuffer - Opaque handle to a command buffer object C Specification --------------- // refBegin VkCommandBuffer - Opaque handle to a command buffer object Command buffers are objects used to record commands which can: be subsequently submitted to a device queue for execution. There are two levels of command buffers - _primary command buffers_, which can: execute secondary command buffers, and which are submitted to queues, and _secondary command buffers_, which can: be executed by primary command buffers, and which are not directly submitted to queues. Command buffers are represented by sname:VkCommandBuffer handles: include::../handles/VkCommandBuffer.txt[] Description ----------- // refEnd VkCommandBuffer See Also -------- slink:VkSubmitInfo, flink:vkAllocateCommandBuffers, flink:vkBeginCommandBuffer, flink:vkCmdBeginQuery, flink:vkCmdBeginRenderPass, flink:vkCmdBindDescriptorSets, flink:vkCmdBindIndexBuffer, flink:vkCmdBindPipeline, flink:vkCmdBindVertexBuffers, flink:vkCmdBlitImage, flink:vkCmdClearAttachments, flink:vkCmdClearColorImage, flink:vkCmdClearDepthStencilImage, flink:vkCmdCopyBuffer, flink:vkCmdCopyBufferToImage, flink:vkCmdCopyImage, flink:vkCmdCopyImageToBuffer, flink:vkCmdCopyQueryPoolResults, flink:vkCmdDispatch, flink:vkCmdDispatchIndirect, flink:vkCmdDraw, flink:vkCmdDrawIndexed, flink:vkCmdDrawIndexedIndirect, flink:vkCmdDrawIndirect, flink:vkCmdEndQuery, flink:vkCmdEndRenderPass, flink:vkCmdExecuteCommands, flink:vkCmdFillBuffer, flink:vkCmdNextSubpass, flink:vkCmdPipelineBarrier, flink:vkCmdPushConstants, flink:vkCmdResetEvent, flink:vkCmdResetQueryPool, flink:vkCmdResolveImage, flink:vkCmdSetBlendConstants, flink:vkCmdSetDepthBias, flink:vkCmdSetDepthBounds, flink:vkCmdSetEvent, flink:vkCmdSetLineWidth, flink:vkCmdSetScissor, flink:vkCmdSetStencilCompareMask, flink:vkCmdSetStencilReference, flink:vkCmdSetStencilWriteMask, flink:vkCmdSetViewport, flink:vkCmdUpdateBuffer, flink:vkCmdWaitEvents, flink:vkCmdWriteTimestamp, flink:vkEndCommandBuffer, flink:vkFreeCommandBuffers, flink:vkResetCommandBuffer Document Notes -------------- For more information, see the Vulkan Specification at URL https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkCommandBuffer This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification,not directly. include::footer.txt[]