Lines Matching refs:flushState
473 void GrOpsTask::onPrepare(GrOpFlushState* flushState) { in onPrepare() argument
485 flushState->setSampledProxyArray(&fSampledProxies); in onPrepare()
501 flushState->setOpArgs(&opArgs); in onPrepare()
509 chain.head()->prepare(flushState); in onPrepare()
510 flushState->setOpArgs(nullptr); in onPrepare()
513 flushState->setSampledProxyArray(nullptr); in onPrepare()
551 bool GrOpsTask::onExecute(GrOpFlushState* flushState) { in onExecute() argument
569 !flushState->gpu()->caps()->performColorClearsAsDraws()); in onExecute()
571 const GrCaps& caps = *flushState->gpu()->caps(); in onExecute()
578 if (!flushState->resourceProvider()->attachStencilAttachment(renderTarget, in onExecute()
628 GrOpsRenderPass* renderPass = create_render_pass(flushState->gpu(), in onExecute()
644 flushState->setOpsRenderPass(renderPass); in onExecute()
666 flushState->setOpArgs(&opArgs); in onExecute()
667 chain.head()->execute(flushState, chain.bounds()); in onExecute()
668 flushState->setOpArgs(nullptr); in onExecute()
672 flushState->gpu()->submit(renderPass); in onExecute()
673 flushState->setOpsRenderPass(nullptr); in onExecute()