/third_party/flutter/skia/tests/ |
D | ClipBoundsTest.cpp | 32 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()
|
D | ClipStackTest.cpp | 280 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/ |
D | SkClipStackDevice.cpp | 79 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()
|
D | SkClipStack.cpp | 679 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()
|
D | SkClipStack.h | 322 bool* isIntersectionOfRects = nullptr) const; 488 bool* isIntersectionOfRects = nullptr) const;
|
/third_party/skia/src/core/ |
D | SkClipStackDevice.cpp | 78 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()
|
D | SkClipStack.cpp | 623 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()
|
D | SkClipStack.h | 348 bool* isIntersectionOfRects = nullptr) const; 508 bool* isIntersectionOfRects = nullptr) const;
|
/third_party/skia/tests/ |
D | ClipStackTest.cpp | 248 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/ |
D | GrClip.h | 29 bool* isIntersectionOfRects = nullptr) const = 0; 164 bool* isIntersectionOfRects) const final { in getConservativeBounds() argument 166 if (isIntersectionOfRects) { in getConservativeBounds() 167 *isIntersectionOfRects = true; in getConservativeBounds()
|
D | GrClipStackClip.cpp | 66 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()
|
D | GrClipStackClip.h | 30 bool* isIntersectionOfRects) const final;
|