diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-04-01 16:25:11 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-04-01 16:25:11 +0000 |
commit | 53e1e4d88a06db62898a3bf75751c042729d7160 (patch) | |
tree | 0d1eeab45c0a6d8276781e9cd24246df5d0d9f9d /src/core | |
parent | e3ff558a4baf4cb924e7513a81c8073ddae385fc (diff) |
Minor changes to GrFontCache system.
The main change is parameterizing the GrAtlasMgr so it can have a different sized backing texture and a different number of plots. This is in support of the saveLayer cache which has a smaller backing texture and only one plot.
R=jvanverth@google.com, bsalomon@google.com
Author: robertphillips@google.com
Review URL: https://codereview.chromium.org/217423014
git-svn-id: http://skia.googlecode.com/svn/trunk@14011 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkGlyphCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkGlyphCache.h b/src/core/SkGlyphCache.h index 7b2ebb844e..135942b28b 100644 --- a/src/core/SkGlyphCache.h +++ b/src/core/SkGlyphCache.h @@ -28,7 +28,7 @@ class SkGlyphCache_Globals; This class represents a strike: a specific combination of typeface, size, matrix, etc., and holds the glyphs for that strike. Calling any of the getUnichar.../getGlyphID... methods will return the requested glyph, - either instantly if it is already cahced, or by first generating it and then + either instantly if it is already cached, or by first generating it and then adding it to the strike. The strikes are held in a global list, available to all threads. To interact |