Home
last modified time | relevance | path

Searched refs:fCommandBuffers (Results 1 – 4 of 4) sorted by relevance

/external/skqp/src/gpu/vk/
DGrVkGpuCommandBuffer.cpp126 cbInfo.fCommandBuffers.push_back(fGpu->cmdPool()->findOrCreateSecondaryCommandBuffer(fGpu)); in init()
141 cbInfo.fCommandBuffers.push_back(vkRT->getExternalSecondaryCommandBuffer()); in initWrapped()
142 cbInfo.fCommandBuffers[0]->ref(); in initWrapped()
262 fGpu->submitSecondaryCommandBuffer(cbInfo.fCommandBuffers, cbInfo.fRenderPass, in submit()
298 for (int j = 0; j < cbInfo.fCommandBuffers.count(); ++j) { in reset()
299 cbInfo.fCommandBuffers[j]->unref(fGpu); in reset()
507 cbInfo.fCommandBuffers.push_back(fGpu->cmdPool()->findOrCreateSecondaryCommandBuffer(fGpu)); in addAdditionalCommandBuffer()
537 cbInfo.fCommandBuffers.push_back(fGpu->cmdPool()->findOrCreateSecondaryCommandBuffer(fGpu)); in addAdditionalRenderPass()
DGrVkGpuCommandBuffer.h184 SkTArray<GrVkSecondaryCommandBuffer*> fCommandBuffers; member
199 return fCommandBuffers.back(); in currentCmdBuf()
/external/skia/src/gpu/dawn/
DGrDawnGpu.cpp551 if (!fCommandBuffers.empty()) { in onSubmitToGpu()
552 fQueue.Submit(fCommandBuffers.size(), &fCommandBuffers.front()); in onSubmitToGpu()
553 fCommandBuffers.clear(); in onSubmitToGpu()
787 fCommandBuffers.push_back(commandEncoder.Finish()); in onRegenerateMipMapLevels()
891 fCommandBuffers.push_back(commandBuffer); in appendCommandBuffer()
904 fCommandBuffers.push_back(fCopyEncoder.Finish()); in flushCopyEncoder()
DGrDawnGpu.h214 std::vector<wgpu::CommandBuffer> fCommandBuffers; variable