Searched defs:ibounds (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/gpu/
H A DGrReducedClip.h30 const SkIRect& ibounds() const { SkASSERT(fHasIBounds); return fIBounds; } function in class:GrReducedClip
31 int left() const { return this->ibounds().left(); }
32 int top() const { return this->ibounds().top(); }
33 int width() const { return this->ibounds().width(); }
34 int height() const { return this->ibounds().height(); }
37 * Indicates whether ibounds() are defined. They will always be defined if the elements() are
56 * If elements() are nonempty, uniquely identifies the list of elements within ibounds().
/external/skia/src/fonts/
H A DSkRandomScalerContext.cpp96 SkIRect ibounds; local
97 newBounds.roundOut(&ibounds);
98 glyph->fLeft = ibounds.fLeft;
99 glyph->fTop = ibounds.fTop;
100 glyph->fWidth = ibounds.width();
101 glyph->fHeight = ibounds.height();
/external/skia/tests/
H A DClipStackTest.cpp1040 GrClip::IsInsideClip(reduced->ibounds(), stackBounds),
1056 SkIRect ibounds = reduced->hasIBounds() ? reduced->ibounds() : kIBounds; local
1059 reducedStack.clipDevRect(ibounds, kIntersect_SkClipOp);
1060 stack.clipDevRect(ibounds, kIntersect_SkClipOp);
1064 set_region_to_stack(stack, ibounds, &region);
1067 set_region_to_stack(reducedStack, ibounds, &reducedRegion);
1189 REPORTER_ASSERT(reporter, reduced.ibounds() == testCases[i].clipIRect);
1190 SkASSERT(reduced.ibounds() == testCases[i].clipIRect);
1237 GrClip::IsInsideClip(reduced.ibounds(), queryBound
[all...]
/external/skia/src/gpu/ops/
H A DGrAAHairLinePathRenderer.cpp250 SkIRect ibounds; local
277 bounds.roundOut(&ibounds);
278 if (SkIRect::Intersects(devClipBounds, ibounds)) {
319 bounds.roundOut(&ibounds);
320 if (SkIRect::Intersects(devClipBounds, ibounds)) {
344 bounds.roundOut(&ibounds);
346 if (SkIRect::Intersects(devClipBounds, ibounds)) {
379 bounds.roundOut(&ibounds);
380 if (SkIRect::Intersects(devClipBounds, ibounds)) {
404 bounds.roundOut(&ibounds);
[all...]
/external/skia/src/core/
H A DSkAAClip.cpp1397 SkIRect ibounds; local
1398 path.getBounds().roundOut(&ibounds);
1402 tmpClip.setRect(ibounds);
1407 // of clip and ibounds, we create this snugClip to be that intersection and send it
1412 ibounds = clip->getBounds();
1414 if (ibounds.isEmpty() || !ibounds.intersect(clip->getBounds())) {
1417 snugClip.op(ibounds, SkRegion::kIntersect_Op);
1420 Builder builder(ibounds);
H A DSkCanvas.cpp1642 SkIRect ibounds = this->onGetDeviceClipBounds(); local
1643 if (ibounds.isEmpty()) {
1658 r.iset(ibounds.fLeft - inset, ibounds.fTop - inset,
1659 ibounds.fRight + inset, ibounds.fBottom + inset);

Completed in 152 milliseconds