/external/skia/docs/examples/ |
D | Path_isEmpty.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 11 debugster("initial", path); in draw() 13 debugster("after moveTo", path); in draw() 15 debugster("after rewind", path); in draw() 17 debugster("after lineTo", path); in draw() 19 debugster("after reset", path); in draw()
|
D | Path_isRect.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 18 debugster("empty", path); in draw() 20 debugster("addRect", path); in draw() 22 debugster("moveTo", path); in draw() 24 debugster("lineTo", path); in draw() 28 debugster("addPoly", path); in draw()
|
D | Matrix_TypeMask.cpp | 7 auto debugster = [](const char* prefix, const SkMatrix& matrix) -> void { in draw() local 18 debugster("reset", matrix); in draw() 20 debugster("postTranslate", matrix); in draw() 22 debugster("postScale", matrix); in draw() 24 debugster("postScale", matrix); in draw() 27 debugster("setPolyToPoly", matrix); in draw()
|
D | Path_isLastContourClosed.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 12 debugster("initial", path); in draw() 14 debugster("after close", path); in draw() 16 debugster("after lineTo", path); in draw() 18 debugster("after close", path); in draw()
|
D | Paint_nothingToDraw.cpp | 7 auto debugster = [](const char* prefix, const SkPaint& p) -> void { in draw() local 12 debugster("initial", paint); in draw() 14 debugster("blend dst", paint); in draw() 16 debugster("blend src over", paint); in draw() 18 debugster("alpha 0", paint); in draw()
|
D | Path_countPoints.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 11 debugster("empty", path); in draw() 13 debugster("zero line", path); in draw() 17 debugster("line", path); in draw() 19 debugster("second move", path); in draw()
|
D | Region_copy_const_SkRegion.cpp | 7 auto debugster = [](const char* label, SkRegion& region) -> void { in draw() local 13 debugster("region bounds", region); in draw() 14 debugster("region2 bounds", region2); in draw() 17 debugster("region bounds", region); in draw() 18 debugster("region2 bounds", region2); in draw()
|
D | Path_equal_operator.cpp | 7 auto debugster = [](const char* prefix, const SkPath& a, const SkPath& b) -> void { in draw() local 12 debugster("empty", one, two); in draw() 14 debugster("moveTo", one, two); in draw() 16 debugster("rewind", one, two); in draw() 19 debugster("reset", one, two); in draw()
|
D | Region_setRegion.cpp | 7 auto debugster = [](const char* label, SkRegion& region) -> void { in draw() local 14 debugster("region bounds", region); in draw() 15 debugster("region2 bounds", region2); in draw() 18 debugster("region bounds", region); in draw() 19 debugster("region2 bounds", region2); in draw()
|
D | Path_isLine.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 17 debugster("empty", path); in draw() 19 debugster("zero line", path); in draw() 23 debugster("line", path); in draw() 25 debugster("second move", path); in draw()
|
D | Region_Iterator_rewind.cpp | 7 auto debugster = [](const char* label, SkRegion::Iterator& iter, bool addRewind) -> void { in draw() local 16 debugster("empty iter", iter, true); in draw() 19 debugster("empty region", iter, true); in draw() 22 debugster("after set rect", iter, false); in draw() 23 debugster("after rewind", iter, true); in draw()
|
D | Path_getPoints.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path, SkPoint* points, int max) -> void { in draw() local 19 debugster("no points", path, nullptr, 0); in draw() 20 debugster("zero max", path, points, 0); in draw() 21 debugster("too small", path, points, 2); in draw() 22 debugster("just right", path, points, path.countPoints()); in draw()
|
D | Path_getVerbs.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path, uint8_t* verbs, int max) -> void { in draw() local 20 debugster("no verbs", path, nullptr, 0); in draw() 21 debugster("zero max", path, verbs, 0); in draw() 22 debugster("too small", path, verbs, 2); in draw() 23 debugster("just right", path, verbs, path.countVerbs()); in draw()
|
D | Region_isEmpty.cpp | 7 auto debugster = [](const char* label, SkRegion& region) -> void { in draw() local 11 debugster("initial", region); in draw() 13 debugster("set rect", region); in draw() 15 debugster("set empty", region); in draw()
|
D | Region_isRect.cpp | 7 auto debugster = [](const char* label, const SkRegion& region) -> void { in draw() local 11 debugster("initial", region); in draw() 13 debugster("set rect", region); in draw() 15 debugster("set empty", region); in draw()
|
D | Region_computeRegionComplexity.cpp | 7 auto debugster = [](const char* label, const SkRegion& region) -> void { in draw() local 11 debugster("initial", region); in draw() 13 debugster("set rect", region); in draw() 15 debugster("op rect", region); in draw()
|
D | Region_isComplex.cpp | 7 auto debugster = [](const char* label, const SkRegion& region) -> void { in draw() local 11 debugster("initial", region); in draw() 13 debugster("set rect", region); in draw() 15 debugster("op rect", region); in draw()
|
D | Region_Iterator_reset.cpp | 7 auto debugster = [](const char* label, SkRegion::Iterator& iter) -> void { in draw() local 12 debugster("empty region", iter); in draw() 14 debugster("after set rect", iter); in draw() 16 debugster("after reset", iter); in draw()
|
D | Path_isFinite.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 11 debugster("initial", path); in draw() 13 debugster("after line", path); in draw() 17 debugster("after scale", path); in draw()
|
D | Region_equal1_operator.cpp | 7 auto debugster = [](const char* prefix, const SkRegion& a, const SkRegion& b) -> void { in draw() local 12 debugster("empty", one, two); in draw() 14 debugster("set rect", one, two); in draw() 16 debugster("set empty", one, two); in draw()
|
D | Region_notequal1_operator.cpp | 7 auto debugster = [](const char* prefix, const SkRegion& a, const SkRegion& b) -> void { in draw() local 12 debugster("empty", one, two); in draw() 15 debugster("set rect", one, two); in draw() 17 debugster("union rect", one, two); in draw()
|
D | Path_computeTightBounds.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 13 debugster("empty", path); in draw() 15 debugster("circle", path); in draw() 19 debugster("rotated circle", path); in draw()
|
D | IRect_size.cpp | 7 auto debugster = [](const char* prefix, const SkIRect& rect) -> void { in draw() local 14 debugster("original", rect); in draw() 16 debugster(" offset", rect); in draw() 18 debugster(" outset", rect); in draw()
|
D | Path_getBounds.cpp | 7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local 13 debugster("empty", path); in draw() 15 debugster("circle", path); in draw() 19 debugster("rotated circle", path); in draw()
|
D | Region_Cliperator_done.cpp | 7 auto debugster = [](const char* label, SkRegion& region) -> void { in draw() local 12 debugster("empty region", region); in draw() 14 debugster("after add rect", region); in draw()
|