Home
last modified time | relevance | path

Searched refs:prepareToDraw (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/src/gpu/gl/
DGrGLOpsRenderPass.cpp183 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDraw()
193 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawIndexed()
226 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawInstanced()
244 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawIndexedInstanced()
294 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawIndirect()
302 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawIndirect()
320 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in multiDrawArraysANGLEOrWebGL()
366 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawIndexedIndirect()
374 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in onDrawIndexedIndirect()
393 GrGLenum glPrimType = fGpu->prepareToDraw(fPrimitiveType); in multiDrawElementsANGLEOrWebGL()
DGrGLGpu.h104 GrGLenum prepareToDraw(GrPrimitiveType primitiveType);
DGrGLGpu.cpp2324 GrGLenum GrGLGpu::prepareToDraw(GrPrimitiveType primitiveType) { in prepareToDraw() function in GrGLGpu
/third_party/skia/src/gpu/
DGrOpsRenderPass.cpp208 bool GrOpsRenderPass::prepareToDraw() { in prepareToDraw() function in GrOpsRenderPass
224 if (!this->prepareToDraw()) { in draw()
235 if (!this->prepareToDraw()) { in drawIndexed()
247 if (!this->prepareToDraw()) { in drawInstanced()
259 if (!this->prepareToDraw()) { in drawIndexedInstanced()
273 if (!this->prepareToDraw()) { in drawIndirect()
299 if (!this->prepareToDraw()) { in drawIndexedIndirect()
DGrOpsRenderPass.h174 bool prepareToDraw();
/third_party/skia/experimental/sktext/editor/
DTexts.cpp12 fDrawableText = fWrappedText->prepareToDraw<DrawableText>(fUnicodeText.get(), in paint()
41 fDrawableText = fWrappedText->prepareToDraw<DrawableText>(fUnicodeText.get(), in paint()
/third_party/flutter/skia/src/gpu/ccpr/
DGrCCFiller.h50 bool prepareToDraw(GrOnFlushResourceProvider*);
DGrCCStroker.h55 bool prepareToDraw(GrOnFlushResourceProvider*);
DGrCCPerFlushResources.cpp530 if (!fFiller.prepareToDraw(onFlushRP)) { in finalize()
533 if (!fStroker.prepareToDraw(onFlushRP)) { in finalize()
DGrCCFiller.cpp305 bool GrCCFiller::prepareToDraw(GrOnFlushResourceProvider* onFlushRP) { in prepareToDraw() function in GrCCFiller
DGrCCStroker.cpp574 bool GrCCStroker::prepareToDraw(GrOnFlushResourceProvider* onFlushRP) { in prepareToDraw() function in GrCCStroker
/third_party/skia/experimental/sktext/include/
DInterface.h98 …std::unique_ptr<DrawableText> prepareToDraw(UnicodeText* unicodeText, PositionType positionType, S…
DSkText.md30 It also has a method <b>prepareToDraw</b> that creates a DrawableText object, and a method <b>prepa…
DText.h201 …std::unique_ptr<Drawable> prepareToDraw(UnicodeText* unicodeText, PositionType positionType, SkSpa… in prepareToDraw() function
/third_party/flutter/skia/samplecode/
DSampleCCPRGeometry.cpp390 stroker.prepareToDraw(&onFlushRP); in onExecute()