Home
last modified time | relevance | path

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

/third_party/flutter/skia/tests/
DClipBoundsTest.cpp32 bool isIntersectionOfRects = true; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
37 &isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
41 REPORTER_ASSERT(reporter, isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
49 &isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
53 REPORTER_ASSERT(reporter, isIntersectionOfRects); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
DClipStackTest.cpp280 bool isIntersectionOfRects = false; in test_bounds() local
318 &isIntersectionOfRects); in test_bounds()
321 REPORTER_ASSERT(reporter, isIntersectionOfRects == in test_bounds()
324 REPORTER_ASSERT(reporter, !isIntersectionOfRects); in test_bounds()
454 bool isIntersectionOfRects; in test_rect_replace() local
501 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_replace()
561 bool isIntersectionOfRects; in test_rect_merging() local
573 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_merging()
575 REPORTER_ASSERT(reporter, isIntersectionOfRects); in test_rect_merging()
588 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_merging()
[all …]
/third_party/flutter/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.cpp679 bool* isIntersectionOfRects) const { in getBounds()
688 if (isIntersectionOfRects) { in getBounds()
689 *isIntersectionOfRects = false; in getBounds()
696 if (isIntersectionOfRects) { in getBounds()
697 *isIntersectionOfRects = element->fIsIntersectionOfRects; in getBounds()
939 bool* isIntersectionOfRects) const { in getConservativeBounds()
949 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds()
DSkClipStack.h322 bool* isIntersectionOfRects = nullptr) const;
488 bool* isIntersectionOfRects = nullptr) const;
/third_party/skia/src/core/
DSkClipStackDevice.cpp78 bool isIntersectionOfRects; in onAsRgnClip() local
80 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onAsRgnClip()
81 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onAsRgnClip()
115 bool isIntersectionOfRects; in onGetClipType() local
117 fClipStack.getBounds(&bounds, &boundType, &isIntersectionOfRects); in onGetClipType()
118 if (isIntersectionOfRects && SkClipStack::kNormal_BoundsType == boundType) { in onGetClipType()
DSkClipStack.cpp623 bool* isIntersectionOfRects) const { in getBounds()
632 if (isIntersectionOfRects) { in getBounds()
633 *isIntersectionOfRects = false; in getBounds()
640 if (isIntersectionOfRects) { in getBounds()
641 *isIntersectionOfRects = element->fIsIntersectionOfRects; in getBounds()
857 bool* isIntersectionOfRects) const { in getConservativeBounds()
867 this->getBounds(&temp, &boundType, isIntersectionOfRects); in getConservativeBounds()
DSkClipStack.h348 bool* isIntersectionOfRects = nullptr) const;
508 bool* isIntersectionOfRects = nullptr) const;
/third_party/skia/tests/
DClipStackTest.cpp248 bool isIntersectionOfRects = false; in test_bounds() local
287 &isIntersectionOfRects); in test_bounds()
290 REPORTER_ASSERT(reporter, isIntersectionOfRects == in test_bounds()
293 REPORTER_ASSERT(reporter, !isIntersectionOfRects); in test_bounds()
394 bool isIntersectionOfRects; in test_rect_replace() local
441 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_replace()
509 bool isIntersectionOfRects; in test_rect_merging() local
519 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_merging()
521 REPORTER_ASSERT(reporter, isIntersectionOfRects); in test_rect_merging()
532 stack.getBounds(&bound, &type, &isIntersectionOfRects); in test_rect_merging()
[all …]
/third_party/flutter/skia/src/gpu/
DGrClip.h29 bool* isIntersectionOfRects = nullptr) const = 0;
164 bool* isIntersectionOfRects) const final { in getConservativeBounds() argument
166 if (isIntersectionOfRects) { in getConservativeBounds()
167 *isIntersectionOfRects = true; in getConservativeBounds()
DGrClipStackClip.cpp66 bool* isIntersectionOfRects) const { in getConservativeBounds()
69 if (isIntersectionOfRects) { in getConservativeBounds()
70 *isIntersectionOfRects = true; in getConservativeBounds()
75 fStack->getConservativeBounds(0, 0, width, height, &devBounds, isIntersectionOfRects); in getConservativeBounds()
DGrClipStackClip.h30 bool* isIntersectionOfRects) const final;