Home
last modified time | relevance | path

Searched refs:recursiveDraw (Results 1 – 2 of 2) sorted by relevance

/external/skia/tools/
DToolUtils.cpp617 this->recursiveDraw(canvas, /* curDepth= */ 0, /* turnLeft= */ true); in draw()
693 void HilbertGenerator::recursiveDraw(SkCanvas* canvas, int curDepth, bool turnLeft) { in recursiveDraw() function in ToolUtils::HilbertGenerator
699 this->recursiveDraw(canvas, curDepth + 1, !turnLeft); in recursiveDraw()
702 this->recursiveDraw(canvas, curDepth + 1, turnLeft); in recursiveDraw()
704 this->recursiveDraw(canvas, curDepth + 1, turnLeft); in recursiveDraw()
707 this->recursiveDraw(canvas, curDepth + 1, !turnLeft); in recursiveDraw()
DToolUtils.h109 void recursiveDraw(SkCanvas* canvas, int curDepth, bool turnLeft);