Home
last modified time | relevance | path

Searched refs:shiftedClip (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/src/core/
DSkScan_Path.cpp399 SkIRect shiftedClip = clipRect; in sk_fill_path() local
400 shiftedClip.fLeft = SkLeftShift(shiftedClip.fLeft, shiftEdgesUp); in sk_fill_path()
401 shiftedClip.fRight = SkLeftShift(shiftedClip.fRight, shiftEdgesUp); in sk_fill_path()
402 shiftedClip.fTop = SkLeftShift(shiftedClip.fTop, shiftEdgesUp); in sk_fill_path()
403 shiftedClip.fBottom = SkLeftShift(shiftedClip.fBottom, shiftEdgesUp); in sk_fill_path()
406 int count = builder.buildEdges(path, pathContainedInClip ? nullptr : &shiftedClip); in sk_fill_path()
453 if (!pathContainedInClip && start_y < shiftedClip.fTop) { in sk_fill_path()
454 start_y = shiftedClip.fTop; in sk_fill_path()
456 if (!pathContainedInClip && stop_y > shiftedClip.fBottom) { in sk_fill_path()
457 stop_y = shiftedClip.fBottom; in sk_fill_path()
[all …]
DSkEdgeBuilder.cpp364 const SkIRect* shiftedClip) { in buildEdges() argument
371 ? this->buildPoly(path, shiftedClip, canCullToTheRight) in buildEdges()
372 : this->build (path, shiftedClip, canCullToTheRight); in buildEdges()
DSkEdgeBuilder.h21 const SkIRect* shiftedClip);