From f856fd1ccdd839646159767f6aa9a2f2a1b97f04 Mon Sep 17 00:00:00 2001 From: Brian Salomon Date: Fri, 16 Dec 2016 14:24:34 -0500 Subject: Rename GrBatchFontCache->GrAtlasGlyphCache Change-Id: Ie21e18b631daa24e70df630b9f910213f62bdbdf Reviewed-on: https://skia-review.googlesource.com/6164 Commit-Queue: Brian Salomon Reviewed-by: Brian Osman --- include/gpu/GrContext.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/gpu') diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index 147cf5cb60..779529ab8c 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -20,8 +20,8 @@ #include "../private/GrAuditTrail.h" #include "../private/GrSingleOwner.h" +class GrAtlasGlyphCache; struct GrBatchAtlasConfig; -class GrBatchFontCache; struct GrContextOptions; class GrContextPriv; class GrContextThreadSafeProxy; @@ -330,7 +330,7 @@ public: // Functions intended for internal use only. GrGpu* getGpu() { return fGpu; } const GrGpu* getGpu() const { return fGpu; } - GrBatchFontCache* getBatchFontCache() { return fBatchFontCache; } + GrAtlasGlyphCache* getAtlasGlyphCache() { return fAtlasGlyphCache; } GrTextBlobCache* getTextBlobCache() { return fTextBlobCache.get(); } bool abandoned() const; GrResourceProvider* resourceProvider() { return fResourceProvider; } @@ -389,7 +389,7 @@ private: sk_sp fThreadSafeProxy; - GrBatchFontCache* fBatchFontCache; + GrAtlasGlyphCache* fAtlasGlyphCache; std::unique_ptr fTextBlobCache; bool fDidTestPMConversions; -- cgit v1.2.3