Home
last modified time | relevance | path

Searched refs:commandBuffer (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/vulkan/libvulkan/
Dapi_gen.cpp435 VKAPI_ATTR VkResult BeginCommandBuffer(VkCommandBuffer commandBuffer, const VkCommandBufferBeginInf…
436 VKAPI_ATTR VkResult EndCommandBuffer(VkCommandBuffer commandBuffer);
437 VKAPI_ATTR VkResult ResetCommandBuffer(VkCommandBuffer commandBuffer, VkCommandBufferResetFlags fla…
438 VKAPI_ATTR void CmdBindPipeline(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoin…
439 VKAPI_ATTR void CmdSetViewport(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t view…
440 VKAPI_ATTR void CmdSetScissor(VkCommandBuffer commandBuffer, uint32_t firstScissor, uint32_t scisso…
441 VKAPI_ATTR void CmdSetLineWidth(VkCommandBuffer commandBuffer, float lineWidth);
442 VKAPI_ATTR void CmdSetDepthBias(VkCommandBuffer commandBuffer, float depthBiasConstantFactor, float…
443 VKAPI_ATTR void CmdSetBlendConstants(VkCommandBuffer commandBuffer, const float blendConstants[4]);
444 VKAPI_ATTR void CmdSetDepthBounds(VkCommandBuffer commandBuffer, float minDepthBounds, float maxDep…
[all …]
/frameworks/native/vulkan/nulldrv/
Dnull_driver_gen.h121 VKAPI_ATTR VkResult BeginCommandBuffer(VkCommandBuffer commandBuffer, const VkCommandBufferBeginInf…
122 VKAPI_ATTR VkResult EndCommandBuffer(VkCommandBuffer commandBuffer);
123 VKAPI_ATTR VkResult ResetCommandBuffer(VkCommandBuffer commandBuffer, VkCommandBufferResetFlags fla…
124 VKAPI_ATTR void CmdBindPipeline(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoin…
125 VKAPI_ATTR void CmdSetViewport(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t view…
126 VKAPI_ATTR void CmdSetScissor(VkCommandBuffer commandBuffer, uint32_t firstScissor, uint32_t scisso…
127 VKAPI_ATTR void CmdSetLineWidth(VkCommandBuffer commandBuffer, float lineWidth);
128 VKAPI_ATTR void CmdSetDepthBias(VkCommandBuffer commandBuffer, float depthBiasConstantFactor, float…
129 VKAPI_ATTR void CmdSetBlendConstants(VkCommandBuffer commandBuffer, const float blendConstants[4]);
130 VKAPI_ATTR void CmdSetDepthBounds(VkCommandBuffer commandBuffer, float minDepthBounds, float maxDep…
[all …]
Dnull_driver.cpp1442 void CmdWaitEvents(VkCommandBuffer commandBuffer, uint32_t eventCount, const VkEvent* pEvents, VkPi… in CmdWaitEvents() argument
1445 void CmdPipelineBarrier(VkCommandBuffer commandBuffer, VkPipelineStageFlags srcStageMask, VkPipelin… in CmdPipelineBarrier() argument
1495 void CmdSetDeviceMask(VkCommandBuffer commandBuffer, uint32_t deviceMask) { in CmdSetDeviceMask() argument
1498 void CmdDispatchBase(VkCommandBuffer commandBuffer, uint32_t baseGroupX, uint32_t baseGroupY, uint3… in CmdDispatchBase() argument
/frameworks/native/vulkan/api/
Dvulkan.api8124 // commandBuffer := commandBuffers[i]
8125 // commandBufferObject := GetCommandBuffer(commandBuffer)
8129 // "vkQueueSubmit: enqueued commandBuffer requires missing queue capabilities.")
9202 macro void bindCommandBuffer(VkCommandBuffer commandBuffer, any obj, VkDeviceMemory memory) {
9204 memoryObject.boundCommandBuffers[commandBuffer] = commandBuffer
9206 commandBufferObject := GetCommandBuffer(commandBuffer)
9210 macro void unbindCommandBuffer(VkCommandBuffer commandBuffer, any obj, VkDeviceMemory memory) {
9212 memoryObject.boundCommandBuffers[commandBuffer] = null
9214 commandBufferObject := GetCommandBuffer(commandBuffer)
9228 commandBuffer := ?
[all …]
/frameworks/opt/gamesdk/third_party/cube/app/src/main/cpp/
Dcube.cpp796 void Demo::draw_build_cmd(vk::CommandBuffer commandBuffer) { in draw_build_cmd() argument
809 auto result = commandBuffer.begin(&commandInfo); in draw_build_cmd()
812 commandBuffer.beginRenderPass(&passInfo, vk::SubpassContents::eInline); in draw_build_cmd()
813 commandBuffer.bindPipeline(vk::PipelineBindPoint::eGraphics, pipeline); in draw_build_cmd()
814 commandBuffer.bindDescriptorSets(vk::PipelineBindPoint::eGraphics, pipeline_layout, 0, 1, in draw_build_cmd()
819 commandBuffer.setViewport(0, 1, &viewport); in draw_build_cmd()
822 commandBuffer.setScissor(0, 1, &scissor); in draw_build_cmd()
823 commandBuffer.draw(12 * 3, 1, 0, 0); in draw_build_cmd()
826 commandBuffer.endRenderPass(); in draw_build_cmd()
849commandBuffer.pipelineBarrier(vk::PipelineStageFlagBits::eBottomOfPipe, vk::PipelineStageFlagBits:… in draw_build_cmd()
[all …]