| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "GrTextBlobCache.h" | 8 #include "GrTextBlobCache.h" |
| 9 | 9 |
| 10 static const int kVerticesPerGlyph = 4; | 10 static const int kVerticesPerGlyph = 4; |
| 11 | 11 |
| 12 GrTextBlobCache::~GrTextBlobCache() { | 12 GrTextBlobCache::~GrTextBlobCache() { |
| 13 SkTDynamicHash<BitmapTextBlob, uint32_t>::Iter iter(&fCache); | 13 SkTDynamicHash<BitmapTextBlob, BitmapTextBlob::Key>::Iter iter(&fCache); |
| 14 while (!iter.done()) { | 14 while (!iter.done()) { |
| 15 (&(*iter))->unref(); | 15 (&(*iter))->unref(); |
| 16 ++iter; | 16 ++iter; |
| 17 } | 17 } |
| 18 } | 18 } |
| 19 | 19 |
| 20 GrAtlasTextContext::BitmapTextBlob* GrTextBlobCache::createBlob(int glyphCount,
int runCount, | 20 GrAtlasTextContext::BitmapTextBlob* GrTextBlobCache::createBlob(int glyphCount,
int runCount, |
| 21 size_t maxVASize
) { | 21 size_t maxVASize
) { |
| 22 // We allocate size for the BitmapTextBlob itself, plus size for the vertice
s array, | 22 // We allocate size for the BitmapTextBlob itself, plus size for the vertice
s array, |
| 23 // and size for the glyphIds array. | 23 // and size for the glyphIds array. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 cacheBlob->fRunCount = runCount; | 42 cacheBlob->fRunCount = runCount; |
| 43 cacheBlob->fPool = &fPool; | 43 cacheBlob->fPool = &fPool; |
| 44 | 44 |
| 45 #ifdef SK_DEBUG | 45 #ifdef SK_DEBUG |
| 46 cacheBlob->fTotalXError = 0; | 46 cacheBlob->fTotalXError = 0; |
| 47 cacheBlob->fTotalYError = 0; | 47 cacheBlob->fTotalYError = 0; |
| 48 #endif | 48 #endif |
| 49 return cacheBlob; | 49 return cacheBlob; |
| 50 } | 50 } |
| OLD | NEW |