Home
last modified time | relevance | path

Searched refs:clipShape (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/experimental/sorttoy/
DFake.cpp121 void FakeDevice::clipShape(ID id, PaintersOrder paintersOrder, Shape shape, SkIRect r) { in clipShape() function in FakeDevice
169 void FakeCanvas::clipShape(ID id, Shape shape, SkIRect r) { in clipShape() function in FakeCanvas
172 fDeviceStack.back()->clipShape(id, this->nextPaintersOrder(), shape, r); in clipShape()
Dsorttoy.cpp408 Shape clipShape = shape == Shape::kRect ? Shape::kOval : Shape::kRect; in test6() local
412 test->push_back(sk_make_sp<ClipCmd>(ID(0), clipShape, SkIRect::MakeXYWH(28, 28, 40, 40))); in test6()
435 Shape clipShape = shape == Shape::kRect ? Shape::kOval : Shape::kRect; in test7() local
439 test->push_back(sk_make_sp<ClipCmd>(ID(0), clipShape, SkIRect::MakeXYWH(85, 0, 86, 256))); in test7()
447 test->push_back(sk_make_sp<ClipCmd>(ID(3), clipShape, SkIRect::MakeXYWH(0, 85, 256, 86))); in test7()
DFake.h210 void clipShape(ID, PaintersOrder, Shape, SkIRect);
254 void clipShape(ID, Shape, SkIRect);
DCmds.cpp228 c->clipShape(fID, fShape, fRect); in execute()