/external/skia/src/gpu/ops/ |
D | GrMeshDrawOp.cpp | 80 fMesh = target->allocMesh(); in init() 85 fMesh->setIndexedPatterned(std::move(indexBuffer), indicesPerRepetition, repeatCount, in init() 91 target->recordDraw(gp, fMesh, 1, fPrimitiveType); in recordDraw() 98 target->recordDraw(gp, fMesh, 1, primProcProxies, fPrimitiveType); in recordDraw()
|
D | GrRegionOp.cpp | 141 fMesh = helper.mesh(); in onPrepareDraws() 145 if (!fProgramInfo || !fMesh) { in onExecute() 151 flushState->drawMesh(*fMesh); in onExecute() 192 GrSimpleMesh* fMesh = nullptr; member in __anonac8e332f0111::RegionOp
|
D | GrTriangulatingPathRenderer.cpp | 384 fMesh = CreateMesh(target, fVertexData->refGpuBuffer(), 0, fVertexData->numVertices()); in createNonAAMesh() 415 fMesh = CreateMesh(target, fVertexData->refGpuBuffer(), 0, fVertexData->numVertices()); in createNonAAMesh() 435 fMesh = CreateMesh(target, std::move(vertexBuffer), firstVertex, vertexCount); in createAAMesh() 578 if (!fProgramInfo || !fMesh) { in onExecute() 584 flushState->drawMesh(*fMesh); in onExecute() 601 GrSimpleMesh* fMesh = nullptr; member in __anona5e524290211::TriangulatingPathOp
|
D | GrStrokeRectOp.cpp | 233 fMesh = target->allocMesh(); in onPrepareDraws() 234 fMesh->set(std::move(vertexBuffer), vertexCount, firstVertex); in onPrepareDraws() 238 if (!fMesh) { in onExecute() 244 flushState->drawMesh(*fMesh); in onExecute() 263 GrSimpleMesh* fMesh = nullptr; member in __anon373a49710111::NonAAStrokeRectOp 509 GrSimpleMesh* fMesh = nullptr; member in __anon373a49710111::AAStrokeRectOp 590 fMesh = helper.mesh(); in onPrepareDraws() 594 if (!fProgramInfo || !fMesh) { in onExecute() 600 flushState->drawMesh(*fMesh); in onExecute()
|
D | GrDrawVerticesOp.cpp | 301 GrSimpleMesh* fMesh = nullptr; member in __anon119029be0111::DrawVerticesOp 476 SkASSERT(!fMesh); in onPrepareDraws() 477 fMesh = target->allocMesh(); in onPrepareDraws() 479 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertexCount - 1, in onPrepareDraws() 482 fMesh->set(std::move(vertexBuffer), fVertexCount, firstVertex); in onPrepareDraws() 491 if (!fProgramInfo || !fMesh) { in onExecute() 497 flushState->drawMesh(*fMesh); in onExecute()
|
D | GrDrawAtlasOp.cpp | 87 GrSimpleMesh* fMesh = nullptr; member in __anon17cbc72e0111::DrawAtlasOp 244 fMesh = helper.mesh(); in onPrepareDraws() 248 if (!fProgramInfo || !fMesh) { in onExecute() 254 flushState->drawMesh(*fMesh); in onExecute()
|
D | GrOvalOpFactory.cpp | 1420 fMesh = target->allocMesh(); in onPrepareDraws() 1421 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws() 1426 if (!fProgramInfo || !fMesh) { in onExecute() 1432 flushState->drawMesh(*fMesh); in onExecute() 1509 GrSimpleMesh* fMesh = nullptr; member in CircleOp 1741 fMesh = target->allocMesh(); in onPrepareDraws() 1742 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws() 1747 if (!fProgramInfo || !fMesh) { in onExecute() 1753 flushState->drawMesh(*fMesh); in onExecute() 1818 GrSimpleMesh* fMesh = nullptr; member in ButtCapDashedCircleOp [all …]
|
D | GrMeshDrawOp.h | 68 GrSimpleMesh* mesh() { return fMesh; } in mesh() 78 GrSimpleMesh* fMesh = nullptr; variable
|
D | GrShadowRRectOp.cpp | 598 fMesh = target->allocMesh(); in onPrepareDraws() 599 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws() 608 if (!fProgramInfo || !fMesh) { in onExecute() 615 flushState->drawMesh(*fMesh); in onExecute() 654 GrSimpleMesh* fMesh = nullptr; member in __anon9aac33310111::ShadowCircularRRectOp
|
D | GrLatticeOp.cpp | 316 fMesh = helper.mesh(); in onPrepareDraws() 320 if (!fProgramInfo || !fMesh) { in onExecute() 328 flushState->drawMesh(*fMesh); in onExecute() 381 GrSimpleMesh* fMesh = nullptr; member in __anon03cb95b10111::NonAALatticeOp
|
D | GrDashOp.cpp | 653 fMesh = helper.mesh(); in onPrepareDraws() 657 if (!fProgramInfo || !fMesh) { in onExecute() 663 flushState->drawMesh(*fMesh); in onExecute() 734 GrSimpleMesh* fMesh = nullptr; member in DashOp
|
/external/skqp/src/gpu/ops/ |
D | GrMeshDrawOp.cpp | 50 fMesh = target->allocMesh(primitiveType); in init() 51 fMesh->setIndexedPatterned(indexBuffer, indicesPerRepetition, verticesPerRepetition, in init() 53 fMesh->setVertexData(std::move(vertexBuffer), firstVertex); in init() 59 target->draw(std::move(gp), pipeline, fixedDynamicState, fMesh); in recordDraw()
|
D | GrMeshDrawOp.h | 53 GrMesh* fMesh = nullptr; variable
|
/external/skia/tests/ |
D | PrimitiveProcessorTest.cpp | 150 fMesh = helper.mesh(); in onPrepareDraws() 154 if (!fProgramInfo || !fMesh) { in onExecute() 160 flushState->drawMesh(*fMesh); in onExecute() 164 GrSimpleMesh* fMesh = nullptr; member in __anonc10dec5b0111::Op
|
D | OnFlushCallbackTest.cpp | 186 fMesh = target->allocMesh(); in onPrepareDraws() 187 fMesh->setIndexed(indexBuffer, 6, firstIndex, 0, 3, GrPrimitiveRestart::kNo, vertexBuffer, in onPrepareDraws() 192 if (!fProgramInfo || !fMesh) { in onExecute() 198 flushState->drawMesh(*fMesh); in onExecute() 202 GrSimpleMesh* fMesh = nullptr; member in __anonf6c48ace0111::NonAARectOp
|
/external/skia/bench/ |
D | VertexColorSpaceBench.cpp | 257 fMesh = target->allocMesh(); in onPrepareDraws() 258 fMesh->set(std::move(vertexBuffer), kVertexCount, firstVertex); in onPrepareDraws() 262 if (!fProgramInfo || !fMesh) { in onExecute() 268 flushState->drawMesh(*fMesh); in onExecute() 276 GrSimpleMesh* fMesh = nullptr; member in __anon5b1b84980111::Op
|
/external/skia/tools/gpu/ |
D | TestOps.cpp | 144 GrSimpleMesh* fMesh = nullptr; member in __anona0bc612d0111::TestRectOp 211 fMesh = helper.mesh(); in onPrepareDraws() 221 flushState->drawMesh(*fMesh); in onExecute()
|
/external/skia/gm/ |
D | beziereffects.cpp | 125 flushState->drawMesh(*fMesh); in onExecute() 132 GrSimpleMesh* fMesh = nullptr; // filled in by the derived classes member in skiagm::BezierTestOp 194 fMesh = helper.mesh(); in onPrepareDraws() 395 fMesh = helper.mesh(); in onPrepareDraws()
|