aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGlyph.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-12-16 18:59:19 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-17 00:35:39 +0000
commit2ee084e73056b0ad76b721017f576168b7306da3 (patch)
treea07e78e5b454be986463704ab480dfa97750671b /src/gpu/GrGlyph.h
parent903da79a19c35723ff198d56923250d5f3fe0f15 (diff)
Rename GrBatchAtlas -> GrDrawOpAtlas.
Change-Id: I776f37e42dcab8b16535c48df9c405b1f211f6c9 Reviewed-on: https://skia-review.googlesource.com/6165 Commit-Queue: Brian Salomon <brian@thesalomons.net> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'src/gpu/GrGlyph.h')
-rw-r--r--src/gpu/GrGlyph.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/GrGlyph.h b/src/gpu/GrGlyph.h
index 24bc7ca80e..5005b74543 100644
--- a/src/gpu/GrGlyph.h
+++ b/src/gpu/GrGlyph.h
@@ -32,7 +32,7 @@ struct GrGlyph {
typedef uint32_t PackedID;
- GrBatchAtlas::AtlasID fID;
+ GrDrawOpAtlas::AtlasID fID;
SkPath* fPath;
PackedID fPackedID;
GrMaskFormat fMaskFormat;
@@ -41,13 +41,13 @@ struct GrGlyph {
bool fTooLargeForAtlas;
void init(GrGlyph::PackedID packed, const SkIRect& bounds, GrMaskFormat format) {
- fID = GrBatchAtlas::kInvalidAtlasID;
+ fID = GrDrawOpAtlas::kInvalidAtlasID;
fPath = nullptr;
fPackedID = packed;
fBounds.set(bounds);
fMaskFormat = format;
fAtlasLocation.set(0, 0);
- fTooLargeForAtlas = GrBatchAtlas::GlyphTooLargeForAtlas(bounds.width(), bounds.height());
+ fTooLargeForAtlas = GrDrawOpAtlas::GlyphTooLargeForAtlas(bounds.width(), bounds.height());
}
void reset() {