Home
last modified time | relevance | path

Searched refs:isIntersectionOfRects (Results 1 – 8 of 8) sorted by relevance

/external/skia/tests/
DClipBoundsTest.cpp31 bool isIntersectionOfRects = true; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
36 &isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
40 REPORTER_ASSERT(reporter, isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
48 &isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
52 REPORTER_ASSERT(reporter, isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DClipStackTest.cpp250 bool isIntersectionOfRects = false; in test_bounds() local
288 &isIntersectionOfRects); in test_bounds()
291 REPORTER_ASSERT(reporter, isIntersectionOfRects == in test_bounds()
294 REPORTER_ASSERT(reporter, !isIntersectionOfRects); in test_bounds()
425 bool isIntersectionOfRects; in test_rect_replace() local
472 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_replace()
532 bool isIntersectionOfRects; in test_rect_merging() local
544 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_merging()
546 REPORTER_ASSERT(reporter, isIntersectionOfRects); in test_rect_merging()
559 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_merging()
[all …]
/external/skia/src/core/
DSkClipStackDevice.cpp79 bool isIntersectionOfRects; in onAsRgnClip() local
81 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onAsRgnClip()
82 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onAsRgnClip()
99 bool isIntersectionOfRects; in onGetClipType() local
101 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onGetClipType()
102 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onGetClipType()
DSkClipStack.cpp604 bool* isIntersectionOfRects) const { in getBounds()
613 if (isIntersectionOfRects) { in getBounds()
614 *isIntersectionOfRects = false; in getBounds()
621 if (isIntersectionOfRects) { in getBounds()
622 *isIntersectionOfRects = element->fIsIntersectionOfRects; in getBounds()
879 bool* isIntersectionOfRects) const { in getConservativeBounds()
889 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds()
DSkClipStack.h376 bool* isIntersectionOfRects = NULL) const;
542 bool* isIntersectionOfRects = NULL) const;
/external/skia/src/gpu/
DGrClip.h30 bool* isIntersectionOfRects = nullptr) const = 0;
140 bool* isIntersectionOfRects) const final { in getConservativeBounds() argument
142 if (isIntersectionOfRects) { in getConservativeBounds()
143 *isIntersectionOfRects = true; in getConservativeBounds()
DGrClipStackClip.cpp60 bool* isIntersectionOfRects) const { in getConservativeBounds()
63 if (isIntersectionOfRects) { in getConservativeBounds()
64 *isIntersectionOfRects = true; in getConservativeBounds()
69 fStack->getConservativeBounds(0, 0, width, height, &devBounds, isIntersectionOfRects); in getConservativeBounds()
DGrClipStackClip.h30 bool* isIntersectionOfRects) const final;