Drawstate on stack
BUG=skia:
Review URL: https://codereview.chromium.org/732693002
diff --git a/src/gpu/GrBitmapTextContext.h b/src/gpu/GrBitmapTextContext.h
index d98a9f4..a3d0eb2 100644
--- a/src/gpu/GrBitmapTextContext.h
+++ b/src/gpu/GrBitmapTextContext.h
@@ -20,7 +20,7 @@
public:
static GrBitmapTextContext* Create(GrContext*, const SkDeviceProperties&);
- virtual ~GrBitmapTextContext();
+ virtual ~GrBitmapTextContext() {}
private:
GrTextStrike* fStrike;
@@ -50,7 +50,6 @@
void appendGlyph(GrGlyph::PackedID, SkFixed left, SkFixed top, GrFontScaler*);
void flush(); // automatically called by destructor
void finish();
-
};
#endif