• Home
  • Raw
  • Download

Lines Matching refs:addCommand

1273 void CommandBuffer::addCommand(Args &&... args)  in addCommand()  function in vk::CommandBuffer
1292addCommand<::CmdBeginRenderPass>(renderPass, framebuffer, renderArea, clearValueCount, clearValues… in beginRenderPass()
1299 addCommand<::CmdNextSubpass>(); in nextSubpass()
1304 addCommand<::CmdEndRenderPass>(); in endRenderPass()
1313 addCommand<::CmdExecuteCommands>(vk::Cast(pCommandBuffers[i])); in executeCommands()
1325addCommand<::CmdDispatch>(baseGroupX, baseGroupY, baseGroupZ, groupCountX, groupCountY, groupCount… in dispatchBase()
1334 addCommand<::CmdPipelineBarrier>(); in pipelineBarrier()
1343 addCommand<::CmdPipelineBind>(pipelineBindPoint, pipeline); in bindPipeline()
1355 addCommand<::CmdVertexBufferBind>(i + firstBinding, vk::Cast(pBuffers[i]), pOffsets[i]); in bindVertexBuffers()
1361 addCommand<::CmdBeginQuery>(queryPool, query, flags); in beginQuery()
1366 addCommand<::CmdEndQuery>(queryPool, query); in endQuery()
1371 addCommand<::CmdResetQueryPool>(queryPool, firstQuery, queryCount); in resetQueryPool()
1376 addCommand<::CmdWriteTimeStamp>(queryPool, query, pipelineStage); in writeTimestamp()
1382addCommand<::CmdCopyQueryPoolResults>(queryPool, firstQuery, queryCount, dstBuffer, dstOffset, str… in copyQueryPoolResults()
1388 addCommand<::CmdSetPushConstants>(offset, size, pValues); in pushConstants()
1400 addCommand<::CmdSetViewport>(pViewports[i], i + firstViewport); in setViewport()
1413 addCommand<::CmdSetScissor>(pScissors[i], i + firstScissor); in setScissor()
1425 addCommand<::CmdSetDepthBias>(depthBiasConstantFactor, depthBiasClamp, depthBiasSlopeFactor); in setDepthBias()
1430 addCommand<::CmdSetBlendConstants>(blendConstants); in setBlendConstants()
1435 addCommand<::CmdSetDepthBounds>(minDepthBounds, maxDepthBounds); in setDepthBounds()
1443 addCommand<::CmdSetStencilCompareMask>(faceMask, compareMask); in setStencilCompareMask()
1451 addCommand<::CmdSetStencilWriteMask>(faceMask, writeMask); in setStencilWriteMask()
1459 addCommand<::CmdSetStencilReference>(faceMask, reference); in setStencilReference()
1470 addCommand<::CmdBindDescriptorSets>( in bindDescriptorSets()
1477 addCommand<::CmdIndexBufferBind>(buffer, offset, indexType); in bindIndexBuffer()
1482 addCommand<::CmdDispatch>(0, 0, 0, groupCountX, groupCountY, groupCountZ); in dispatch()
1487 addCommand<::CmdDispatchIndirect>(buffer, offset); in dispatchIndirect()
1496 addCommand<::CmdCopyBuffer>(srcBuffer, dstBuffer, pRegions[i]); in copyBuffer()
1511 addCommand<::CmdCopyImage>(srcImage, dstImage, pRegions[i]); in copyImage()
1526 addCommand<::CmdBlitImage>(srcImage, dstImage, pRegions[i], filter); in blitImage()
1537 addCommand<::CmdCopyBufferToImage>(srcBuffer, dstImage, pRegions[i]); in copyBufferToImage()
1549 addCommand<::CmdCopyImageToBuffer>(srcImage, dstBuffer, pRegions[i]); in copyImageToBuffer()
1557addCommand<::CmdUpdateBuffer>(dstBuffer, dstOffset, dataSize, reinterpret_cast<const uint8_t *>(pD… in updateBuffer()
1564 addCommand<::CmdFillBuffer>(dstBuffer, dstOffset, size, data); in fillBuffer()
1574 addCommand<::CmdClearColorImage>(image, *pColor, pRanges[i]); in clearColorImage()
1585 addCommand<::CmdClearDepthStencilImage>(image, *pDepthStencil, pRanges[i]); in clearDepthStencilImage()
1598 addCommand<::CmdClearAttachment>(pAttachments[i], pRects[j]); in clearAttachments()
1614 addCommand<::CmdResolveImage>(srcImage, dstImage, pRegions[i]); in resolveImage()
1622 addCommand<::CmdSignalEvent>(event, stageMask); in setEvent()
1629 addCommand<::CmdResetEvent>(event, stageMask); in resetEvent()
1644 addCommand<::CmdWaitEvent>(vk::Cast(pEvents[i])); in waitEvents()
1650 addCommand<::CmdDraw>(vertexCount, instanceCount, firstVertex, firstInstance); in draw()
1655 addCommand<::CmdDrawIndexed>(indexCount, instanceCount, firstIndex, vertexOffset, firstInstance); in drawIndexed()
1660 addCommand<::CmdDrawIndirect>(buffer, offset, drawCount, stride); in drawIndirect()
1665 addCommand<::CmdDrawIndexedIndirect>(buffer, offset, drawCount, stride); in drawIndexedIndirect()