Lines Matching refs:addCommand
475 void CommandBuffer::addCommand(Args&&... args) in addCommand() function in vk::CommandBuffer
490 addCommand<BeginRenderPass>(renderPass, framebuffer, renderArea, clearValueCount, clearValues); in beginRenderPass()
497 addCommand<NextSubpass>(); in nextSubpass()
502 addCommand<EndRenderPass>(); in endRenderPass()
527 addCommand<PipelineBarrier>(); in pipelineBarrier()
537 addCommand<PipelineBind>(pipelineBindPoint, pipeline); in bindPipeline()
545 addCommand<VertexBufferBind>(i, pBuffers[i], pOffsets[i]); in bindVertexBuffers()
692 addCommand<BufferToBufferCopy>(srcBuffer, dstBuffer, pRegions[i]); in copyBuffer()
707 addCommand<ImageToImageCopy>(srcImage, dstImage, pRegions[i]); in copyImage()
722 addCommand<BlitImage>(srcImage, dstImage, pRegions[i], filter); in blitImage()
733 addCommand<BufferToImageCopy>(srcBuffer, dstImage, pRegions[i]); in copyBufferToImage()
745 addCommand<ImageToBufferCopy>(srcImage, dstBuffer, pRegions[i]); in copyImageToBuffer()
753 addCommand<UpdateBuffer>(dstBuffer, dstOffset, dataSize, pData); in updateBuffer()
760 addCommand<FillBuffer>(dstBuffer, dstOffset, size, data); in fillBuffer()
770 addCommand<ClearColorImage>(image, pColor[i], pRanges[i]); in clearColorImage()
781 addCommand<ClearDepthStencilImage>(image, pDepthStencil[i], pRanges[i]); in clearDepthStencilImage()
794 addCommand<ClearAttachment>(pAttachments[i], pRects[j]); in clearAttachments()
809 addCommand<SignalEvent>(event, stageMask); in setEvent()
816 addCommand<ResetEvent>(event, stageMask); in resetEvent()
829 addCommand<Draw>(vertexCount, instanceCount, firstVertex, firstInstance); in draw()