Lines Matching refs:region2
484 SkRegion region2(region);
486 debugster("region2 bounds", region2);
490 debugster("region2 bounds", region2);
493 region2 bounds: {1,2,3,4}
496 region2 bounds: {1,2,3,4}
513 SkRegion region2;
514 region2.setRect({1, 2, 3, 4});
515 SkDebugf("region %c= region2\n", region == region2 ? '=' : '!');
531 delete calls Region destructor, but copy of original in region2 is unaffected.
534 SkRegion region2(*region);
536 auto r = region2.getBounds();
537 SkDebugf("region2 bounds: {%d,%d,%d,%d}\n", r.fLeft, r.fTop, r.fRight, r.fBottom);
539 region2 bounds: {1,2,3,4}
560 SkRegion region2 = region1;
562 debugster("region2 bounds", region2);
565 region2 bounds: {1,2,3,4}
645 SkRegion region2;
646 region2.set(region1);
648 debugster("region2 bounds", region2);
651 region2 bounds: {1,2,3,4}
672 SkRegion region2;
673 region1.swap(region2);
675 debugster("region2 bounds", region2);
678 region2 bounds: {1,2,3,4}
960 SkRegion region2;
961 region2.setRegion(region);
963 debugster("region2 bounds", region2);
964 region2.setEmpty();
967 debugster("region2 bounds", region2);
970 region2 bounds: {1,2,3,4}
973 region2 bounds: {0,0,0,0}