From d15c52d2333e9b3f732fe2b14e38c1952298d5ec Mon Sep 17 00:00:00 2001 From: Herb Derby Date: Tue, 23 Feb 2021 13:33:12 -0500 Subject: [PATCH] make GrTextBlob::addMultiMaskFormat private Change-Id: Ie3592487d18a719f5ca6a226c971e30c2c01c139 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/374359 Reviewed-by: Robert Phillips Commit-Queue: Herb Derby --- src/gpu/text/GrTextBlob.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/gpu/text/GrTextBlob.h b/src/gpu/text/GrTextBlob.h index 67a2f46559..2f83d885ca 100644 --- a/src/gpu/text/GrTextBlob.h +++ b/src/gpu/text/GrTextBlob.h @@ -414,12 +414,6 @@ public: const Key& key() const; size_t size() const; - template - void addMultiMaskFormat( - AddSingleMaskFormat addSingle, - const SkZip& drawables, - const SkStrikeSpec& strikeSpec); - GrSubRunList& subRunList() { return fSubRunList; } @@ -427,6 +421,12 @@ public: private: GrTextBlob(int allocSize, const SkMatrix& drawMatrix, SkColor initialLuminance); + template + void addMultiMaskFormat( + AddSingleMaskFormat addSingle, + const SkZip& drawables, + const SkStrikeSpec& strikeSpec); + // Methods to satisfy SkGlyphRunPainterInterface void processDeviceMasks(const SkZip& drawables, const SkStrikeSpec& strikeSpec) override;