Searched refs:recursiveDraw (Results 1 – 2 of 2) sorted by relevance
/external/skia/tools/ |
D | ToolUtils.cpp | 617 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()
|
D | ToolUtils.h | 109 void recursiveDraw(SkCanvas* canvas, int curDepth, bool turnLeft);
|