Lines Matching refs:flushState
229 void GrStrokeTessellateOp::onPrepare(GrOpFlushState* flushState) { in onPrepare() argument
231 this->prePrepareTessellator({flushState->allocator(), flushState->writeView(), in onPrepare()
232 &flushState->dstProxyView(), flushState->renderPassBarriers(), in onPrepare()
233 flushState->colorLoadOp(), &flushState->caps()}, in onPrepare()
234 flushState->detachAppliedClip()); in onPrepare()
237 fTessellator->prepare(flushState, fTotalCombinedVerbCnt); in onPrepare()
240 void GrStrokeTessellateOp::onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) { in onExecute() argument
242 flushState->bindPipelineAndScissorClip(*fStencilProgram, chainBounds); in onExecute()
243 flushState->bindTextures(fStencilProgram->geomProc(), nullptr, fStencilProgram->pipeline()); in onExecute()
244 fTessellator->draw(flushState); in onExecute()
247 flushState->bindPipelineAndScissorClip(*fFillProgram, chainBounds); in onExecute()
248 flushState->bindTextures(fFillProgram->geomProc(), nullptr, fFillProgram->pipeline()); in onExecute()
249 fTessellator->draw(flushState); in onExecute()