Index: src/gpu/GrAtlasTextContext.h |
diff --git a/src/gpu/GrAtlasTextContext.h b/src/gpu/GrAtlasTextContext.h |
index c0975b9857df5c583dd9eeb41e3095d2fee9be58..5346471ed025549fd9751f6b92eba8065a151331 100644 |
--- a/src/gpu/GrAtlasTextContext.h |
+++ b/src/gpu/GrAtlasTextContext.h |
@@ -252,6 +252,12 @@ private: |
, fMinMaxScale(SK_ScalarMax) |
, fTextType(0) {} |
+ ~BitmapTextBlob() { |
bsalomon
2015/04/22 18:16:30
override, otherwise lgtm
|
+ for (int i = 0; i < fRunCount; i++) { |
+ fRuns[i].~Run(); |
+ } |
+ } |
+ |
static const Key& GetKey(const BitmapTextBlob& blob) { |
return blob.fKey; |
} |