/external/skia/tools/mdbviz/ |
D | Model.cpp | 46 temp->detachCommands(&fOps); in load() 49 this->setCurOp(fOps.count()-1); in load() 65 return DrawCommand::GetCommandString(fOps[index]->getType()); in getOpName() 69 DrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPush() 76 DrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPop() 82 SkASSERT(curOp < fOps.count()); in setCurOp() 93 SkASSERT(index < fOps.count()); in drawTo() 100 if (fOps[i]->isVisible()) { in drawTo() 101 fOps[i]->execute(&canvas); in drawTo() 109 for (int i = 0; i < fOps.count(); ++i) { in resetOpsTask() [all …]
|
D | Model.h | 37 int numOps() const { return fOps.count(); } in numOps() 54 SkTDArray<DrawCommand*> fOps;
|
/external/skqp/tools/mdbviz/ |
D | Model.cpp | 46 temp->detachCommands(&fOps); in load() 49 this->setCurOp(fOps.count()-1); in load() 65 return SkDrawCommand::GetCommandString(fOps[index]->getType()); in getOpName() 69 SkDrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPush() 77 SkDrawCommand::OpType type = fOps[index]->getType(); in isHierarchyPop() 84 SkASSERT(curOp < fOps.count()); in setCurOp() 95 SkASSERT(index < fOps.count()); in drawTo() 102 if (fOps[i]->isVisible()) { in drawTo() 103 fOps[i]->execute(&canvas); in drawTo() 111 for (int i = 0; i < fOps.count(); ++i) { in resetOpList() [all …]
|
D | Model.h | 37 int numOps() const { return fOps.count(); } in numOps() 54 SkTDArray<SkDrawCommand*> fOps;
|
/external/skia/src/gpu/mtl/ |
D | GrMtlDepthStencil.h | 33 uint32_t fOps; member 41 this->fFront.fOps == that.fFront.fOps && 44 this->fBack.fOps == that.fBack.fOps;
|
D | GrMtlDepthStencil.mm | 101 faceKey->fOps = static_cast<uint32_t>(face.fTest); 104 faceKey->fOps |= (static_cast<uint32_t>(face.fPassOp) << kPassOpShift); 107 faceKey->fOps |= (static_cast<uint32_t>(face.fFailOp) << kFailOpShift);
|
/external/skqp/src/atlastext/ |
D | SkAtlasTextTarget.cpp | 131 SkTArray<std::unique_ptr<GrAtlasTextOp>, true> fOps; member in SkInternalAtlasTextTarget 178 int n = SkTMin(kMaxBatchLookBack, fOps.count()); in addDrawOp() 180 GrAtlasTextOp* other = fOps.fromBack(i).get(); in addDrawOp() 189 fOps.emplace_back(std::move(op)); in addDrawOp() 193 for (int i = 0; i < fOps.count(); ++i) { in deleteOps() 194 if (fOps[i]) { in deleteOps() 195 fOpMemoryPool->release(std::move(fOps[i])); in deleteOps() 198 fOps.reset(); in deleteOps() 202 for (int i = 0; i < fOps.count(); ++i) { in flush() 203 fOps[i]->executeForTextTarget(this); in flush()
|
/external/skqp/src/pathops/ |
D | SkOpBuilder.cpp | 110 if (0 == fOps.count() && op != kUnion_SkPathOp) { in add() 112 *fOps.append() = kUnion_SkPathOp; in add() 115 *fOps.append() = op; in add() 120 fOps.reset(); in reset() 128 int count = fOps.count(); in resolve() 133 if (kUnion_SkPathOp != fOps[index] || test->isInverseFillType()) { in resolve() 164 if (!Op(*result, fPathRefs[index], fOps[index], result)) { in resolve()
|
/external/skia/src/pathops/ |
D | SkOpBuilder.cpp | 112 if (0 == fOps.count() && op != kUnion_SkPathOp) { in add() 114 *fOps.append() = kUnion_SkPathOp; in add() 117 *fOps.append() = op; in add() 122 fOps.reset(); in reset() 130 int count = fOps.count(); in resolve() 135 if (kUnion_SkPathOp != fOps[index] || test->isInverseFillType()) { in resolve() 166 if (!Op(*result, fPathRefs[index], fOps[index], result)) { in resolve()
|
/external/skqp/gm/ |
D | complexclip2.cpp | 99 fOps[j*kRows+i][k] = ops[r.nextU() % SK_ARRAY_COUNT(ops)]; in onOnceBeforeDraw() 176 fOps[j*kRows+i][k], in onDraw() 181 fOps[j*kRows+i][k], in onDraw() 186 fOps[j*kRows+i][k], in onDraw() 203 SkClipOp fOps[kRows * kCols][5]; member in skiagm::ComplexClip2GM
|
/external/skia/gm/ |
D | complexclip2.cpp | 102 fOps[j*kRows+i][k] = ops[r.nextU() % SK_ARRAY_COUNT(ops)]; in onOnceBeforeDraw() 179 fOps[j*kRows+i][k], in onDraw() 184 fOps[j*kRows+i][k], in onDraw() 189 fOps[j*kRows+i][k], in onDraw() 206 SkClipOp fOps[kRows * kCols][5]; member in skiagm::ComplexClip2GM
|
/external/skqp/tests/ |
D | OnFlushCallbackTest.cpp | 276 for (int i = 0; i < fOps.count(); ++i) { in addOp() 277 if (opListID == fOps[i].fID) { in addOp() 278 header = &(fOps[i]); in addOp() 283 fOps.push_back({opListID, nullptr}); in addOp() 284 header = &(fOps[fOps.count()-1]); in addOp() 291 int numOps() const { return fOps.count(); } in numOps() 404 for (int i = 0; i < fOps.count(); ++i) { in getList() 405 if (opListID == fOps[i].fID) { in getList() 406 return &(fOps[i]); in getList() 420 SkTDArray<LinkedListHeader> fOps; member in AtlasObject
|
/external/skia/tests/ |
D | OnFlushCallbackTest.cpp | 312 for (int i = 0; i < fOps.count(); ++i) { in addOp() 313 if (opsTaskID == fOps[i].fID) { in addOp() 314 header = &(fOps[i]); in addOp() 319 fOps.push_back({opsTaskID, nullptr}); in addOp() 320 header = &(fOps[fOps.count()-1]); in addOp() 327 int numOps() const { return fOps.count(); } in numOps() 436 for (int i = 0; i < fOps.count(); ++i) { in getList() 437 if (opsTaskID == fOps[i].fID) { in getList() 438 return &(fOps[i]); in getList() 452 SkTDArray<LinkedListHeader> fOps; member in AtlasObject
|
/external/skqp/include/pathops/ |
D | SkPathOps.h | 106 SkTDArray<SkPathOp> fOps; variable
|
/external/skia/include/pathops/ |
D | SkPathOps.h | 106 SkTDArray<SkPathOp> fOps; variable
|
/external/skqp/include/private/ |
D | GrAuditTrail.h | 115 SkTArray<Op> fOps; member
|
/external/skia/src/gpu/ |
D | GrAuditTrail.h | 115 SkTArray<Op> fOps; member
|
D | GrAuditTrail.cpp | 95 OpInfo::Op& outOp = outOpInfo->fOps.push_back(); in copyOutFromOpsTask()
|
/external/skqp/tools/debugger/ |
D | SkDebugCanvas.cpp | 192 for (int j = 0; j < childrenBounds[i].fOps.count(); j++) { in drawTo() 193 const GrAuditTrail::OpInfo::Op& op = childrenBounds[i].fOps[j]; in drawTo()
|
/external/skqp/src/gpu/ |
D | GrAuditTrail.cpp | 95 OpInfo::Op& outOp = outOpInfo->fOps.push_back(); in copyOutFromOpList()
|
/external/skia/tools/debugger/ |
D | DebugCanvas.cpp | 239 for (int j = 0; j < childrenBounds[i].fOps.count(); j++) { in drawTo() 240 const GrAuditTrail::OpInfo::Op& op = childrenBounds[i].fOps[j]; in drawTo()
|