Searched defs:ClipPath (Results 1 - 4 of 4) sorted by relevance

/external/pdfium/core/fpdfapi/page/
H A Dcpdf_contentparser.cpp84 CPDF_Path ClipPath; local
87 ClipPath.Emplace();
88 ClipPath.AppendRect(form_bbox.left, form_bbox.bottom, form_bbox.right,
90 ClipPath.Transform(&form_matrix);
92 ClipPath.Transform(pParentMatrix);
105 if (ClipPath) {
106 m_pParser->GetCurStates()->m_ClipPath.AppendPath(ClipPath, FXFILL_WINDING,
203 CPDF_Path ClipPath = pObj->m_ClipPath.GetPath(0); local
204 if (!ClipPath.IsRect() || pObj->IsShading())
207 CFX_PointF point0 = ClipPath
[all...]
/external/skia/src/core/
H A DSkRecordDraw.cpp85 DRAW(ClipPath, clipPath(r.path, r.opAA.op(), r.opAA.aa()));
256 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
308 void trackBounds(const ClipPath&) { this->pushControl(); } argument
H A DSkLiteDL.cpp51 M(ClipPath) M(ClipRect) M(ClipRRect) M(ClipRegion) \
142 struct ClipPath final : Op {
143 static const auto kType = Type::ClipPath;
144 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} function in struct:__anon16967::final
557 this->push<ClipPath>(0, path, op, aa);
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_renderstatus.cpp1367 void CPDF_RenderStatus::ProcessClipPath(CPDF_ClipPath ClipPath, argument
1369 if (!ClipPath) {
1376 if (m_LastClipPath == ClipPath)
1379 m_LastClipPath = ClipPath;
1381 int nClipPath = ClipPath.GetPathCount();
1383 const CFX_PathData* pPathData = ClipPath.GetPath(i).GetObject();
1393 int ClipType = ClipPath.GetClipType(i);
1397 int textcount = ClipPath.GetTextCount();
1408 CPDF_TextObject* pText = ClipPath.GetText(i);

Completed in 230 milliseconds