Home | History | Annotate | Download | only in tests

Lines Matching refs:wr

28     GrWindowRectangles wr;
30 REPORTER_ASSERT(reporter, wr.count() == i);
31 REPORTER_ASSERT(reporter, !memcmp(wr.data(), windowData, i * sizeof(SkIRect)));
33 GrWindowRectangles wr2(wr);
34 REPORTER_ASSERT(reporter, wr2 == wr);
35 REPORTER_ASSERT(reporter, wr2.count() == wr.count());
36 REPORTER_ASSERT(reporter, !memcmp(wr2.data(), wr.data(), i * sizeof(SkIRect)));
38 wr.addWindow(windowData[i]);
41 SkASSERT(wr.count() == GrWindowRectangles::kMaxWindows - 1);
43 GrWindowRectangles A(wr), B(wr);
62 GrWindowRectangles A(wr), B(wr);