Searched refs:isIntersectionOfRects (Results 1 – 8 of 8) sorted by relevance
/external/skia/tests/ |
D | ClipBoundsTest.cpp | 31 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()
|
D | ClipStackTest.cpp | 250 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/ |
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 | 604 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()
|
D | SkClipStack.h | 376 bool* isIntersectionOfRects = NULL) const; 542 bool* isIntersectionOfRects = NULL) const;
|
/external/skia/src/gpu/ |
D | GrClip.h | 30 bool* isIntersectionOfRects = nullptr) const = 0; 140 bool* isIntersectionOfRects) const final { in getConservativeBounds() argument 142 if (isIntersectionOfRects) { in getConservativeBounds() 143 *isIntersectionOfRects = true; in getConservativeBounds()
|
D | GrClipStackClip.cpp | 60 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()
|
D | GrClipStackClip.h | 30 bool* isIntersectionOfRects) const final;
|