Searched refs:bounds (Results 426 - 450 of 974) sorted by relevance

<<11121314151617181920>>

/external/skia/src/core/
H A DSkDrawShadowInfo.h54 // get bounds prior to the ctm being applied
55 void GetLocalBounds(const SkPath&, const SkDrawShadowRec&, const SkMatrix& ctm, SkRect* bounds);
/external/skia/src/effects/
H A DSkImageSource.cpp86 SkRect bounds = SkRect::MakeIWH(fImage->width(), fImage->height()); local
87 if (fSrcRect == bounds) {
92 if (dstRect.width() == bounds.width() && dstRect.height() == bounds.height() &&
/external/skia/src/gpu/
H A DGrClipStackClip.h32 GrAppliedClip* out, SkRect* bounds) const final;
/external/skia/src/gpu/mock/
H A DGrMockGpuCommandBuffer.h54 const GrPipeline::DynamicState[], int meshCount, const SkRect& bounds) override {
/external/skia/src/gpu/ops/
H A DGrMeshDrawOp.cpp59 state->executeDrawsAndUploadsForMeshDrawOp(this->uniqueID(), this->bounds());
H A DGrRegionOp.cpp78 SkRect bounds = SkRect::Make(region.getBounds()); local
79 this->setTransformedBounds(bounds, viewMatrix, HasAABloat::kNo, IsZeroArea::kNo);
149 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
H A DGrAALinearizingConvexPathRenderer.cpp51 if (args.fShape->bounds().width() <= 0 && args.fShape->bounds().height() <= 0) {
164 // compute bounds
165 SkRect bounds = path.getBounds(); local
173 bounds.outset(w, w);
175 this->setTransformedBounds(bounds, viewMatrix, HasAABloat::kYes, IsZeroArea::kNo);
306 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
/external/skqp/experimental/sksg/
H A DSkSGNode.h47 const SkRect& bounds() const { function in class:sksg::Node
/external/skqp/gm/
H A Dcomplexclip.cpp106 SkRect bounds = SkRect::MakeLTRB( local
112 bounds.inset(SkIntToScalar(100), SkIntToScalar(100));
116 canvas->drawRect(bounds, boundPaint);
117 canvas->saveLayer(&bounds, nullptr);
H A Ddropshadowimagefilter.cpp55 SkIRect bounds; local
56 r.roundOut(&bounds);
59 bm.allocN32Pixels(bounds.width(), bounds.height());
H A Dfilterbitmap.cpp21 SkRect bounds = SkRect::MakeWH(SkIntToScalar(bm.width()), local
23 mat.mapRect(&bounds);
24 return SkSize::Make(bounds.width(), bounds.height());
H A Dimagefilterscropped.cpp55 SkIRect bounds; local
56 r.roundOut(&bounds);
59 bm.allocN32Pixels(bounds.width(), bounds.height());
/external/skqp/include/core/
H A DSkPictureRecorder.h44 @param bounds the cull rect used when recording this picture. Any drawing the falls outside
50 SkCanvas* beginRecording(const SkRect& bounds,
/external/skqp/src/atlastext/
H A DSkAtlasTextTarget.cpp137 auto bounds = SkIRect::MakeWH(fWidth, fHeight); local
142 (const char*)glyphs, byteLength, pos, 2, {0, 0}, bounds);
159 if (GrRectsOverlap(op->bounds(), other->bounds())) {
/external/skqp/src/core/
H A DSkDrawShadowInfo.h54 // get bounds prior to the ctm being applied
55 void GetLocalBounds(const SkPath&, const SkDrawShadowRec&, const SkMatrix& ctm, SkRect* bounds);
/external/skqp/src/effects/
H A DSkImageSource.cpp86 SkRect bounds = SkRect::MakeIWH(fImage->width(), fImage->height()); local
87 if (fSrcRect == bounds) {
92 if (dstRect.width() == bounds.width() && dstRect.height() == bounds.height() &&
/external/skqp/src/gpu/
H A DGrClipStackClip.h32 GrAppliedClip* out, SkRect* bounds) const final;
/external/skqp/src/gpu/mock/
H A DGrMockGpuCommandBuffer.h54 const GrPipeline::DynamicState[], int meshCount, const SkRect& bounds) override {
/external/skqp/src/gpu/ops/
H A DGrMeshDrawOp.cpp59 state->executeDrawsAndUploadsForMeshDrawOp(this->uniqueID(), this->bounds());
H A DGrRegionOp.cpp78 SkRect bounds = SkRect::Make(region.getBounds()); local
79 this->setTransformedBounds(bounds, viewMatrix, HasAABloat::kNo, IsZeroArea::kNo);
149 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
/external/skqp/tools/viewer/
H A DSkottieSlide.cpp46 const SkRect dstR = SkRect::Make(canvas->imageInfo().bounds());
/external/webrtc/webrtc/modules/video_render/ios/
H A Dvideo_render_ios_view.mm128 return _gles_renderer20->Setup([self bounds].size.width,
129 [self bounds].size.height);
/external/autotest/server/cros/network/
H A Dnetperf_runner.py243 bounds = getattr(self, field + '_bounds')
244 if bounds[0] is None and bounds[1] is None:
248 # We have bounds requirements, but no value to check?
251 if bounds[0] is not None and bounds[0] > value + deviation:
254 if bounds[1] is not None and bounds[1] < value - deviation:
266 Leaving bounds undefined sets them to values which are permissive.
/external/skia/include/core/
H A DSkPaint.h1348 SkPathEffect to scale the metrics and bounds.
1349 Returns the bounding box of text if bounds is not nullptr.
1354 @param bounds returns bounding box relative to (0, 0) if not nullptr
1357 SkScalar measureText(const void* text, size_t length, SkRect* bounds) const;
1364 Does not scale the advance or bounds by fake bold or SkPathEffect.
1383 Does not scale the advance or bounds by fake bold or SkPathEffect.
1394 /** Retrieves the advance and bounds for each glyph in text, and returns
1396 Both widths and bounds may be nullptr.
1398 if bounds is not nullptr, bounds mus
[all...]
/external/skia/samplecode/
H A DSampleRegion.cpp58 // Need a bounds for the text
59 SkRect bounds; local
63 bounds.set(x, y + fm.fTop, x + paint.measureText(text, len), y + fm.fBottom);
65 // may need to outset bounds a little, to account for hinting and/or
67 bounds.inset(-SkIntToScalar(2), -SkIntToScalar(2));
69 canvas->saveLayer(&bounds, nullptr);
73 { bounds.fLeft, y },
74 { bounds.fRight, y }
85 canvas->drawRect(bounds, p);

Completed in 902 milliseconds

<<11121314151617181920>>