commit | 21cbec4870660f776f470e3a5e327599b6433dd2 | [log] [tgz] |
---|---|---|
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Mon Jan 07 17:23:00 2013 +0000 |
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Mon Jan 07 17:23:00 2013 +0000 |
tree | a1aebe391dedc2d9e78912f63b5b57ed979bbb8f | |
parent | 674a3a2ffd568e6e0d27fba0da596034276bbb65 [diff] [blame] |
Remove GrTDArray. Two dynamic array classes is enough. R=reed@google.com Review URL: https://codereview.appspot.com/7069047 git-svn-id: http://skia.googlecode.com/svn/trunk@7053 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrTextStrike.cpp b/src/gpu/GrTextStrike.cpp index aebaaf8..4b55810 100644 --- a/src/gpu/GrTextStrike.cpp +++ b/src/gpu/GrTextStrike.cpp
@@ -149,7 +149,7 @@ GrTextStrike::~GrTextStrike() { GrAtlas::FreeLList(fAtlas); fFontScalerKey->unref(); - fCache.getArray().visit(FreeGlyph); + fCache.getArray().visitAll(FreeGlyph); #if GR_DEBUG gCounter -= 1;