Home
last modified time | relevance | path

Searched refs:debugster (Results 1 – 25 of 39) sorted by relevance

12

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/docs/examples/
H A DPath_isEmpty.cpp7 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()
H A DPath_isRect.cpp7 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()
H A DMatrix_TypeMask.cpp7 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()
H A DPath_isLastContourClosed.cpp7 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()
H A DPaint_nothingToDraw.cpp7 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()
H A DPath_countPoints.cpp7 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()
H A DRegion_copy_const_SkRegion.cpp7 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()
H A DPath_equal_operator.cpp7 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()
H A DPath_getConvexityOrUnknown.cpp7 auto debugster = [](const char* prefix, const SkPath& path) -> void { in draw() local
12 debugster("initial", path); in draw()
14 debugster("first line", path); in draw()
17 debugster("second line", path); in draw()
20 debugster("third line", path); in draw()
H A DRegion_setRegion.cpp7 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()
H A DPath_isLine.cpp7 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()
H A DRegion_Iterator_rewind.cpp7 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()
H A DPath_getPoints.cpp7 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()
H A DPath_getVerbs.cpp7 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()
H A DRegion_isEmpty.cpp7 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()
H A DRegion_isRect.cpp7 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()
H A DRegion_computeRegionComplexity.cpp7 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()
H A DRegion_isComplex.cpp7 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()
H A DRegion_Iterator_reset.cpp7 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()
H A DRegion_equal1_operator.cpp7 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()
H A DPath_isFinite.cpp7 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()
H A DRegion_notequal1_operator.cpp7 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()
H A DPath_getBounds.cpp7 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()
H A DIRect_size.cpp7 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()
H A DPath_computeTightBounds.cpp7 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()

12