| Index: src/gpu/GrBitmapTextContext.h
|
| diff --git a/src/gpu/GrBitmapTextContext.h b/src/gpu/GrBitmapTextContext.h
|
| index 7a93820a167e2042470544181b13d4d06f4af049..d98a9f47f0b48270460d7af16f0da39aee32062f 100644
|
| --- a/src/gpu/GrBitmapTextContext.h
|
| +++ b/src/gpu/GrBitmapTextContext.h
|
| @@ -23,17 +23,11 @@ public:
|
| virtual ~GrBitmapTextContext();
|
|
|
| private:
|
| - enum {
|
| - kMinRequestedGlyphs = 1,
|
| - kDefaultRequestedGlyphs = 64,
|
| - kMinRequestedVerts = kMinRequestedGlyphs * 4,
|
| - kDefaultRequestedVerts = kDefaultRequestedGlyphs * 4,
|
| - };
|
| -
|
| GrTextStrike* fStrike;
|
| void* fVertices;
|
| int fCurrVertex;
|
| - int fMaxVertices;
|
| + int fAllocVertexCount;
|
| + int fTotalVertexCount;
|
| SkRect fVertexBounds;
|
| GrTexture* fCurrTexture;
|
| GrMaskFormat fCurrMaskFormat;
|
|
|