Home
last modified time | relevance | path

Searched refs:ClipPath (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_contentparser.cpp84 CPDF_Path ClipPath; in Start() local
87 ClipPath.Emplace(); in Start()
88 ClipPath.AppendRect(form_bbox.left, form_bbox.bottom, form_bbox.right, in Start()
90 ClipPath.Transform(&form_matrix); in Start()
92 ClipPath.Transform(pParentMatrix); in Start()
105 if (ClipPath) { in Start()
106 m_pParser->GetCurStates()->m_ClipPath.AppendPath(ClipPath, FXFILL_WINDING, in Start()
203 CPDF_Path ClipPath = pObj->m_ClipPath.GetPath(0); in Continue() local
204 if (!ClipPath.IsRect() || pObj->IsShading()) in Continue()
207 CFX_PointF point0 = ClipPath.GetPoint(0); in Continue()
[all …]
/external/skia/src/core/
DSkPictureAnalyzer.cpp42 const SkRecords::ClipPath clipOp = { in analyzeClipPath()
DSkRecords.h56 M(ClipPath) \
212 RECORD(ClipPath, 0,
DSkLiteDL.cpp53 M(ClipPath) M(ClipRect) M(ClipRRect) M(ClipRegion) \
139 struct ClipPath final : Op { struct
140 static const auto kType = Type::ClipPath; argument
141 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() argument
546 this->push<ClipPath>(0, path, op, aa); in clipPath()
DSkPictureCommon.h122 void operator()(const SkRecords::ClipPath& op) { in operator()
DSkRecordDraw.cpp88 DRAW(ClipPath, clipPath(r.path, r.opAA.op(), r.opAA.aa()));
247 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); } in updateClipBounds()
298 void trackBounds(const ClipPath&) { this->pushControl(); } in trackBounds() argument
DSkRecorder.cpp394 APPEND(ClipPath, this->getDeviceClipBounds(), path, opAA); in onClipPath()
/external/pdfium/core/fpdfapi/render/
Dcpdf_renderstatus.h79 void ProcessClipPath(CPDF_ClipPath ClipPath, const CFX_Matrix* pObj2Device);
Dcpdf_renderstatus.cpp1367 void CPDF_RenderStatus::ProcessClipPath(CPDF_ClipPath ClipPath, in ProcessClipPath() argument
1369 if (!ClipPath) { in ProcessClipPath()
1376 if (m_LastClipPath == ClipPath) in ProcessClipPath()
1379 m_LastClipPath = ClipPath; in ProcessClipPath()
1381 int nClipPath = ClipPath.GetPathCount(); in ProcessClipPath()
1383 const CFX_PathData* pPathData = ClipPath.GetPath(i).GetObject(); in ProcessClipPath()
1393 int ClipType = ClipPath.GetClipType(i); in ProcessClipPath()
1397 int textcount = ClipPath.GetTextCount(); in ProcessClipPath()
1408 CPDF_TextObject* pText = ClipPath.GetText(i); in ProcessClipPath()
/external/skia/tests/
DCanvasTest.cpp379 SIMPLE_TEST_STEP(ClipPath, clipPath(d.fPath));
/external/skia/tools/debugger/
DSkDrawCommand.cpp277 INSTALL_FACTORY(ClipPath); in fromJSON()