aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-12-16 14:24:34 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-16 19:48:35 +0000
commitf856fd1ccdd839646159767f6aa9a2f2a1b97f04 (patch)
treec5e31835dcbaad536bba1f8383abfaca86af5e1c /include/gpu
parent884300dca5531f60535501424bbd86b30e20450a (diff)
Rename GrBatchFontCache->GrAtlasGlyphCache
Change-Id: Ie21e18b631daa24e70df630b9f910213f62bdbdf Reviewed-on: https://skia-review.googlesource.com/6164 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'include/gpu')
-rw-r--r--include/gpu/GrContext.h6
1 files changed, 3 insertions, 3 deletions
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<GrContextThreadSafeProxy> fThreadSafeProxy;
- GrBatchFontCache* fBatchFontCache;
+ GrAtlasGlyphCache* fAtlasGlyphCache;
std::unique_ptr<GrTextBlobCache> fTextBlobCache;
bool fDidTestPMConversions;