/third_party/skia/src/core/ |
D | SkMaskFilter.cpp | 42 SkASSERT(src.fBounds.contains(dst->fBounds)); in extractMaskSubset() 44 const int dx = dst->fBounds.left() - src.fBounds.left(); in extractMaskSubset() 45 const int dy = dst->fBounds.top() - src.fBounds.top(); in extractMaskSubset() 68 for (int y = mask.fBounds.top(); y < mask.fBounds.bottom(); ++y) { 69 for (int x = mask.fBounds.left(); x < mask.fBounds.right(); ++x) { 86 m.fBounds = mask.fBounds; in draw_nine_clipped() 87 m.fBounds.fRight = cx; in draw_nine_clipped() 88 m.fBounds.fBottom = cy; in draw_nine_clipped() 89 if (m.fBounds.width() > 0 && m.fBounds.height() > 0) { in draw_nine_clipped() 91 m.fBounds.offsetTo(outerR.left(), outerR.top()); in draw_nine_clipped() [all …]
|
D | SkBlurMask.cpp | 121 dst->fBounds = SkIRect::MakeEmpty(); in BoxBlur() 122 dst->fRowBytes = dst->fBounds.width(); in BoxBlur() 146 dst->fBounds = src.fBounds; // restore trimmed bounds in BoxBlur() 147 dst->fRowBytes = dst->fBounds.width(); in BoxBlur() 162 src.fBounds.width(), src.fBounds.height()); in BoxBlur() 168 src.fBounds.width(), src.fBounds.height()); in BoxBlur() 175 src.fBounds.width(), src.fBounds.height()); in BoxBlur() 182 src.fBounds.width(), src.fBounds.height()); in BoxBlur() 195 src.fBounds.width(), src.fBounds.height()); in BoxBlur() 201 src.fBounds.width(), src.fBounds.height()); in BoxBlur() [all …]
|
D | SkAAClip.cpp | 239 SkIRect fBounds; member in SkAAClip::Builder 252 Builder(const SkIRect& bounds) : fBounds(bounds) { in Builder() 278 SkASSERT(fBounds.contains(x, y)); in addRun() 279 SkASSERT(fBounds.contains(x + count - 1, y)); in addRun() 281 x -= fBounds.left(); in addRun() 282 y -= fBounds.top(); in addRun() 297 SkASSERT(row->fWidth < fBounds.width()); in addRun() 305 SkASSERT(row->fWidth < fBounds.width()); in addRun() 310 SkASSERT(row->fWidth <= fBounds.width()); in addRun() 314 SkASSERT(fBounds.contains(x, y + height - 1)); in addColumn() [all …]
|
D | SkScalerContext.cpp | 253 if (dst.fBounds.isEmpty() || !SkRectPriv::Is16Bit(dst.fBounds)) { in internalMakeGlyph() 257 glyph.fLeft = dst.fBounds.fLeft; in internalMakeGlyph() 258 glyph.fTop = dst.fBounds.fTop; in internalMakeGlyph() 259 glyph.fWidth = SkToU16(dst.fBounds.width()); in internalMakeGlyph() 260 glyph.fHeight = SkToU16(dst.fBounds.height()); in internalMakeGlyph() 282 for (int y = mask.fBounds.height() - 1; y >= 0; --y) { in applyLUTToA8Mask() 283 for (int x = mask.fBounds.width() - 1; x >= 0; --x) { in applyLUTToA8Mask() 302 SkASSERT(src.width() == (dst.fBounds.height() - 2) * 4); in pack4xHToMask() 303 SkASSERT(src.height() == dst.fBounds.width()); in pack4xHToMask() 305 SkASSERT(src.width() == (dst.fBounds.width() - 2) * 4); in pack4xHToMask() [all …]
|
D | SkRegion.cpp | 116 fBounds.setEmpty(); in SkRegion() 164 swap(fBounds, other.fBounds); in swap() 179 fBounds.setEmpty(); in setEmpty() 191 fBounds = r; in setRect() 200 fBounds = src.fBounds; in setRegion() 262 *itop = fBounds.fTop; in count_runtype_values() 263 *ibot = fBounds.fBottom; in count_runtype_values() 317 if (SkRegion::RunsAreARect(runs, count, &fBounds)) { in setRuns() 318 return this->setRect(fBounds); in setRuns() 333 fRunHead->computeRunBounds(&fBounds); in setRuns() [all …]
|
D | SkMask.cpp | 28 return safeMul32(fBounds.height(), fRowBytes); in computeImageSize() 65 size_t dstW = safe.add(src.fBounds.width(), safe.add(radiusX, radiusX)); in PrepareDestination() 67 size_t dstH = safe.add(src.fBounds.height(), safe.add(radiusY, radiusY)); in PrepareDestination() 73 dst.fBounds.setEmpty(); in PrepareDestination() 78 dst.fBounds.setWH(SkTo<int>(dstW), SkTo<int>(dstH)); in PrepareDestination() 79 dst.fBounds.offset(src.fBounds.x(), src.fBounds.y()); in PrepareDestination() 80 dst.fBounds.offset(-radiusX, -radiusY); in PrepareDestination() 110 SkASSERT(fBounds.contains(x, y)); in getAddr() 114 addr += (y - fBounds.fTop) * fRowBytes; in getAddr() 115 addr += (x - fBounds.fLeft) << maskFormatToShift(fFormat); in getAddr()
|
D | SkMask.h | 39 SkIRect fBounds; member 47 bool isEmpty() const { return fBounds.isEmpty(); } in isEmpty() 67 SkASSERT(fBounds.contains(x, y)); in getAddr1() 69 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes; in getAddr1() 78 SkASSERT(fBounds.contains(x, y)); in getAddr8() 80 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes; in getAddr8() 90 SkASSERT(fBounds.contains(x, y)); in getAddrLCD16() 92 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes); in getAddrLCD16() 93 return row + (x - fBounds.fLeft); in getAddrLCD16() 103 SkASSERT(fBounds.contains(x, y)); in getAddr32() [all …]
|
D | SkDraw_text.cpp | 62 SkRegion::Cliperator clipper(fRC->bwRgn(), mask.fBounds); in paintMasks() 67 bm.installPixels(SkImageInfo::MakeN32Premul(mask.fBounds.size()), in paintMasks() 70 this->drawSprite(bm, mask.fBounds.x(), mask.fBounds.y(), paint); in paintMasks() 89 const SkIRect* bounds = &mask.fBounds; in paintMasks() 93 if (!clipBounds.containsNoEmptyCheck(mask.fBounds)) { in paintMasks() 94 if (!storage.intersect(mask.fBounds, clipBounds)) { in paintMasks() 102 bm.installPixels(SkImageInfo::MakeN32Premul(mask.fBounds.size()), in paintMasks() 105 this->drawSprite(bm, mask.fBounds.x(), mask.fBounds.y(), paint); in paintMasks()
|
D | SkRTree.cpp | 25 b.fBounds = bounds; in insert() 38 fRoot.fBounds = branches[0].fBounds; in insert() 132 b.fBounds = (*branches)[currentBranch].fBounds; in bulkLoad() 136 b.fBounds.join((*branches)[currentBranch].fBounds); in bulkLoad() 149 if (fCount > 0 && SkRect::Intersects(fRoot.fBounds, query)) { in search() 156 if (SkRect::Intersects(node->fChildren[i].fBounds, query)) { in search()
|
D | SkRecordedDrawable.cpp | 37 return new SkBigPicture(fBounds, fRecord, std::move(pictList), fBBH, subPictureBytes); in onNewPictureSnapshot() 42 buffer.writeRect(fBounds); in flatten() 46 SkPictureRecord pictureRecord(SkISize::Make(fBounds.width(), fBounds.height()), 0); in flatten() 50 if (pictureRecord.getLocalClipBounds().contains(fBounds)) { in flatten()
|
D | SkPathRef.cpp | 190 matrix.mapRect(&(*dst)->fBounds, src.fBounds); in CreateTransformedCopy() 191 if (!((*dst)->fIsFinite = (*dst)->fBounds.isFinite())) { in CreateTransformedCopy() 192 (*dst)->fBounds.setEmpty(); in CreateTransformedCopy() 196 (*dst)->fBounds.setEmpty(); in CreateTransformedCopy() 317 fBounds = ref.fBounds; in copy() 648 if (!fBoundsIsDirty && !fBounds.isEmpty()) { in isValid() 650 Sk2s leftTop = Sk2s(fBounds.fLeft, fBounds.fTop); in isValid() 651 Sk2s rightBot = Sk2s(fBounds.fRight, fBounds.fBottom); in isValid() 658 fBounds.fLeft, fBounds.fTop, fBounds.fRight, fBounds.fBottom); in isValid()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_image.cpp | 94 : fBounds (bounds) in dng_image() 198 return fBounds; in RepeatingTile() 502 dng_rect overlap = buffer.fArea & fBounds; in Get() 531 areaT.b = Min_int32 (areaT.b, fBounds.t); in Get() 532 areaL.r = Min_int32 (areaL.r, fBounds.l); in Get() 533 areaB.t = Max_int32 (areaB.t, fBounds.b); in Get() 534 areaR.l = Max_int32 (areaR.l, fBounds.r); in Get() 539 areaH.l = Max_int32 (areaH.l, fBounds.l); in Get() 540 areaH.r = Min_int32 (areaH.r, fBounds.r); in Get() 542 areaV.t = Max_int32 (areaV.t, fBounds.t); in Get() [all …]
|
D | dng_simple_image.cpp | 90 fBounds.t = 0; in Trim() 91 fBounds.l = 0; in Trim() 93 fBounds.b = r.H (); in Trim() 94 fBounds.r = r.W (); in Trim() 98 fBuffer.fArea = fBounds; in Trim() 107 int32 originH = fBounds.l; in Rotate() 108 int32 originV = fBounds.t; in Rotate() 113 uint32 width = fBounds.W (); in Rotate() 114 uint32 height = fBounds.H (); in Rotate() 142 width = fBounds.H (); in Rotate() [all …]
|
/third_party/skia/tests/ |
D | BlitMaskClip.cpp | 20 : fBounds(bounds) in TestBlitter() 25 REPORTER_ASSERT(fReporter, x >= fBounds.fLeft && x < fBounds.fRight); in blitH() 26 REPORTER_ASSERT(fReporter, y >= fBounds.fTop && y < fBounds.fBottom); in blitH() 28 REPORTER_ASSERT(fReporter, right > fBounds.fLeft && right <= fBounds.fRight); in blitH() 36 SkIRect fBounds; member in TestBlitter 55 mask.fBounds = b; in DEF_TEST() 59 TestBlitter tb(mask.fBounds, reporter); in DEF_TEST()
|
D | MaskCacheTest.cpp | 47 mask.fBounds.setXYWH(0, 0, 100, 100); in DEF_TEST() 60 REPORTER_ASSERT(reporter, mask.fBounds.top() == 0 && mask.fBounds.bottom() == 100); in DEF_TEST() 84 mask.fBounds.setXYWH(0, 0, 100, 100); in DEF_TEST() 97 REPORTER_ASSERT(reporter, mask.fBounds.top() == 0 && mask.fBounds.bottom() == 100); in DEF_TEST()
|
/third_party/skia/modules/sksg/src/ |
D | SkSGNode.cpp | 45 , fBounds(SkRectPriv::MakeLargeS32()) in Node() 133 TRAVERSAL_GUARD fBounds; in revalidate() local 136 return fBounds; in revalidate() 143 fBounds = this->onRevalidate(ic, ctm); in revalidate() 146 const auto prev_bounds = fBounds; in revalidate() 149 fBounds = this->onRevalidate(ic_override, ctm); in revalidate() 152 if (fBounds != prev_bounds) { in revalidate() 153 ic->inval(fBounds, ctm); in revalidate() 159 return fBounds; in revalidate()
|
/third_party/skia/include/core/ |
D | SkRegion.h | 158 const SkIRect& getBounds() const { return fBounds; } in getBounds() 304 SkASSERT(this->isEmpty() == fBounds.isEmpty()); // valid region in quickContains() 309 fBounds.fLeft <= r.fLeft && fBounds.fTop <= r.fTop && in quickContains() 310 fBounds.fRight >= r.fRight && fBounds.fBottom >= r.fBottom; in quickContains() 322 !SkIRect::Intersects(fBounds, rect); in quickReject() 334 !SkIRect::Intersects(fBounds, rgn.fBounds); in quickReject() 379 if (!fBounds.intersect(rect)) { in op() 636 SkIRect fBounds;
|
/third_party/skia/src/gpu/text/ |
D | GrSDFMaskFilter.cpp | 65 dst->fBounds.setEmpty(); in filterMask() 71 src.fBounds.width(), src.fBounds.height(), in filterMask() 75 src.fBounds.width(), src.fBounds.height(), in filterMask() 79 src.fBounds.width(), src.fBounds.height(), in filterMask()
|
/third_party/skia/src/gpu/ops/ |
D | GrOp.h | 124 return fBounds; in bounds() 128 fBounds = clippedBounds; in setClippedBounds() 200 this->onDumpInfo().c_str(), fBounds.fLeft, fBounds.fTop, in dumpInfo() 201 fBounds.fRight, fBounds.fBottom); in dumpInfo() 284 fBounds = newBounds; in setBounds() 289 m.mapRect(&fBounds, srcBounds); in setTransformedBounds() 306 return fBounds.joinPossiblyEmptyRect(that.fBounds); in joinBounds() 362 SkRect fBounds; variable
|
/third_party/skia/src/effects/ |
D | SkShaderMaskFilter.cpp | 76 dst->fBounds = src.fBounds; in filterMask() 77 dst->fRowBytes = src.fBounds.width(); // need alignment? in filterMask() 92 src.fBounds.width() * sizeof(uint8_t), src.fBounds.height()); in filterMask() 106 canvas.translate(-SkIntToScalar(dst->fBounds.fLeft), -SkIntToScalar(dst->fBounds.fTop)); in filterMask()
|
/third_party/skia/src/pathops/ |
D | SkOpContour.h | 24 return fBounds.fTop == rh.fBounds.fTop 25 ? fBounds.fLeft < rh.fBounds.fLeft 26 : fBounds.fTop < rh.fBounds.fTop; 58 return fBounds; in bounds() 283 SkDEBUGCODE(fBounds.setLTRB(SK_ScalarMax, SK_ScalarMax, SK_ScalarMin, SK_ScalarMin)); in reset() 306 fBounds = segment->bounds(); in setBounds() 308 fBounds.add(segment->bounds()); in setBounds() 377 SkPathOpsBounds fBounds; variable
|
/third_party/skia/src/gpu/ |
D | GrAuditTrail.cpp | 18 auditOp->fBounds = op->bounds(); in addOp() 48 opNode->fBounds = op->bounds(); in addOp() 79 consumerOp.fBounds = consumer->bounds(); in opsCombined() 91 outOpInfo->fBounds = bn->fBounds; in copyOutFromOpsTask() 96 outOp.fBounds = currentOp->fBounds; in copyOutFromOpsTask() 185 skrect_to_json(writer, "Bounds", fBounds); in toJson() 199 skrect_to_json(writer, "Bounds", fBounds); in toJson()
|
/third_party/skia/samplecode/ |
D | SampleStrokePath.cpp | 54 src.fBounds.set(0, 0, x, y); 55 src.fRowBytes = src.fBounds.width(); 59 printf("src [%d %d %d %d] radius %g\n", src.fBounds.fLeft, src.fBounds.fTop, 60 src.fBounds.fRight, src.fBounds.fBottom, radius); 65 for (int y = 0; y < dst.fBounds.height(); y++) { 66 for (int x = 0; x < dst.fBounds.width(); x++) {
|
D | SampleQuadStroker.cpp | 99 SkRect fBounds; member 122 SkRect fBounds; member in QuadStrokerView 234 fCubicButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 236 fConicButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 238 fQuadButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 240 fArcButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 242 fRRectButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 244 fCircleButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 246 fTextButton.fBounds.setXYWH(this->width() - 50, SkIntToScalar(buttonOffset), 30, 30); in onSizeChange() 272 fBounds.setIWH(width * zoom, height * zoom); in setWHZ() [all …]
|
/third_party/skia/src/ports/ |
D | SkFontHost_FreeType_common.cpp | 117 SkASSERT(mask.fBounds.width() == static_cast<int>(bitmap.width)); in copyFT2LCD16() 120 SkASSERT(mask.fBounds.height() == static_cast<int>(bitmap.rows)); in copyFT2LCD16() 127 const int width = mask.fBounds.width(); in copyFT2LCD16() 128 const int height = mask.fBounds.height(); in copyFT2LCD16() 150 SkASSERT(3 * mask.fBounds.width() == static_cast<int>(bitmap.width)); in copyFT2LCD16() 173 SkASSERT(3 * mask.fBounds.height() == static_cast<int>(bitmap.rows)); in copyFT2LCD16() 215 SkASSERTF(dstMask.fBounds.width() == static_cast<int>(srcFTBitmap.width), in copyFTBitmap() 218 dstMask.fBounds.width(), in copyFTBitmap() 221 SkASSERTF(dstMask.fBounds.height() == static_cast<int>(srcFTBitmap.rows), in copyFTBitmap() 224 dstMask.fBounds.height(), in copyFTBitmap() [all …]
|