aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGlyph.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-07-31 06:37:50 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-31 06:37:50 -0700
commit58ff81b42be51f8b4f4abf256dba0490a2562f94 (patch)
tree46a32f2aa12b59394454a7419f66523d69e6aebd /src/gpu/GrGlyph.h
parent15bde1697a3edb9dee683fa638d464e07e460794 (diff)
Remove unused field in micro cleanup
TBR=bsalomon@google.com BUG=skia: Review URL: https://codereview.chromium.org/1268893002
Diffstat (limited to 'src/gpu/GrGlyph.h')
-rw-r--r--src/gpu/GrGlyph.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gpu/GrGlyph.h b/src/gpu/GrGlyph.h
index 8750c763e5..6a4166f5ff 100644
--- a/src/gpu/GrGlyph.h
+++ b/src/gpu/GrGlyph.h
@@ -31,9 +31,7 @@ struct GrGlyph {
typedef uint32_t PackedID;
- // TODO either plot or AtlasID will be valid, not both
GrBatchAtlas::AtlasID fID;
- GrPlot* fPlot;
SkPath* fPath;
PackedID fPackedID;
GrMaskFormat fMaskFormat;
@@ -43,7 +41,6 @@ struct GrGlyph {
void init(GrGlyph::PackedID packed, const SkIRect& bounds, GrMaskFormat format) {
fID = GrBatchAtlas::kInvalidAtlasID;
- fPlot = NULL;
fPath = NULL;
fPackedID = packed;
fBounds.set(bounds);