aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGlyph.h
diff options
context:
space:
mode:
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() {