Home
last modified time | relevance | path

Searched refs:deviceRect (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/samplecode/
DSampleImageFilterDAG.cpp93 SkIRect deviceRect; in computeBounds() local
95 ctm.mapRect(fContent).roundOut(&deviceRect); in computeBounds()
97 SkASSERT(this->isImplicitMatrixNode() || inputRect == deviceRect); in computeBounds()
98 this->computeReverseLocalIsolatedBounds(deviceRect); in computeBounds()
99 this->computeReverseBounds(deviceRect, false); in computeBounds()
102 this->computeReverseBounds(deviceRect, true); in computeBounds()
/third_party/skia/src/core/
DSkClipStackDevice.cpp56 SkRect deviceRect = SkMatrixPriv::MapRect(this->globalToDevice(), SkRect::Make(rect)); in onReplaceClip() local
57 fClipStack.replaceClip(deviceRect, /*doAA=*/false); in onReplaceClip()
DSkDevice.cpp558 SkIRect deviceRect = SkMatrixPriv::MapRect(this->globalToDevice(), SkRect::Make(rect)).round(); in onReplaceClip() local
559 if (!deviceRect.intersect(this->bounds())) { in onReplaceClip()
560 deviceRect.setEmpty(); in onReplaceClip()
563 clip.fClipBounds = deviceRect; in onReplaceClip()
DSkBitmapDevice.cpp677 SkRect deviceRect = SkMatrixPriv::MapRect(this->globalToDevice(), SkRect::Make(rect)); in onReplaceClip() local
678 fRCStack.replaceClip(deviceRect.round()); in onReplaceClip()
/third_party/skia/src/gpu/ops/
DAtlasTextOp.cpp61 SkRect deviceRect, in AtlasTextOp() argument
77 this->setBounds(deviceRect, HasAABloat::kNo, IsHairline::kNo);
83 SkRect deviceRect, in AtlasTextOp() argument
103 this->setBounds(deviceRect, HasAABloat::kNo, IsHairline::kNo);
DAtlasTextOp.h136 SkRect deviceRect,
143 SkRect deviceRect,
/third_party/skia/src/gpu/v1/
DDevice_v1.h168 SkRect deviceRect = SkMatrixPriv::MapRect(this->globalToDevice(), SkRect::Make(rect)); in onReplaceClip() local
169 fClip.replaceClip(deviceRect.round()); in onReplaceClip()
/third_party/skia/src/gpu/text/
DGrTextBlob.cpp493 SkRect deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const;
659 const SkRect subRunBounds = this->deviceRect(drawMatrix, drawOrigin); in makeAtlasTextOp()
816 SkRect DirectMaskSubRun::deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const { in deviceRect() function in __anone43c208d0111::DirectMaskSubRun
887 SkRect deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const;
985 this->deviceRect(drawMatrix, drawOrigin), in makeAtlasTextOp()
1080 SkRect TransformedMaskSubRun::deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const { in deviceRect() function in __anone43c208d0111::TransformedMaskSubRun
1146 SkRect deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const;
1294 this->deviceRect(drawMatrix, drawOrigin), in makeAtlasTextOp()
1353 SkRect SDFTSubRun::deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const { in deviceRect() function in __anone43c208d0111::SDFTSubRun
1941 SkRect deviceRect(const SkMatrix& drawMatrix, SkPoint drawOrigin) const;
[all …]
/third_party/flutter/skia/src/core/
DSkCanvas.cpp1567 SkRect deviceRect; in quick_reject_slow_path() local
1568 matrix.mapRect(&deviceRect, src); in quick_reject_slow_path()
1569 return !deviceRect.isFinite() || !deviceRect.intersect(deviceClip); in quick_reject_slow_path()