Home | History | Annotate | Download | only in samplecode

Lines Matching defs:rect

1546 static void rand_rect(SkIRect* rect, SkRandom& rand) {
1549 rect->set(rand.nextU() >> shift, rand.nextU() >> shift,
1551 rect->sort();
1560 static void test_rects(const SkIRect rect[], int count) {
1564 rgn0.op(rect[i], SkRegion::kUnion_Op);
1565 // dumpRect(rect[i]);
1567 rgn1.setRects(rect, count);
1572 dumpRect(rect[i]);
1615 SkIRect rect[N];
1617 rand_rect(&rect[j], rand);
1619 test_rects(rect, N);