Reland "rename MakePath to Make"

This is a reland of 36132b2aea

Original change's description:
> rename MakePath to Make
> 
> Change-Id: Ibdee0835308401fce99ff9e4d98486c4808f84a2
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/302683
> Reviewed-by: Herb Derby <herb@google.com>
> Commit-Queue: Herb Derby <herb@google.com>

Change-Id: I36c1c0625af8e9afff34d891995ca7aff8f169bf
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/302896
Reviewed-by: Herb Derby <herb@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Herb Derby <herb@google.com>
This commit is contained in:
Herb Derby 2020-07-14 20:46:23 -04:00 committed by Skia Commit-Bot
parent 8f32f1300d
commit af3ae69335
2 changed files with 9 additions and 9 deletions

View File

@ -108,7 +108,7 @@ void GrPathSubRun::draw(const GrClip* clip,
}
auto GrPathSubRun::MakePaths(
auto GrPathSubRun::Make(
const SkZip<SkGlyphVariant, SkPoint>& drawables,
bool isAntiAliased,
const SkStrikeSpec& strikeSpec,
@ -870,10 +870,10 @@ void GrTextBlob::processSourcePaths(const SkZip<SkGlyphVariant, SkPoint>& drawab
const SkFont& runFont,
const SkStrikeSpec& strikeSpec) {
this->setHasBitmap();
GrSubRun* subRun = GrPathSubRun::MakePaths(drawables,
runFont.hasSomeAntiAliasing(),
strikeSpec,
&fAlloc);
GrSubRun* subRun = GrPathSubRun::Make(drawables,
runFont.hasSomeAntiAliasing(),
strikeSpec,
&fAlloc);
this->insertSubRun(subRun);
}

View File

@ -204,10 +204,10 @@ public:
const SkGlyphRunList& glyphRunList,
GrRenderTargetContext* rtc) override;
static GrSubRun* MakePaths(const SkZip<SkGlyphVariant, SkPoint>& drawables,
bool isAntiAliased,
const SkStrikeSpec& strikeSpec,
SkArenaAlloc* alloc);
static GrSubRun* Make(const SkZip<SkGlyphVariant, SkPoint>& drawables,
bool isAntiAliased,
const SkStrikeSpec& strikeSpec,
SkArenaAlloc* alloc);
private:
struct PathGlyph {