Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: src/gpu/GrTextBlobCache.cpp

Issue 1055843002: Adding a cache + memory pool for GPU TextBlobs (Closed) Base URL: https://skia.googlesource.com/skia.git@atlastext2
Patch Set: feedback inc Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrTextBlobCache.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "GrTextBlobCache.h"
9
10 static const int kVerticesPerGlyph = 4;
11
12 GrTextBlobCache::~GrTextBlobCache() {
13 SkTDynamicHash<BitmapTextBlob, uint32_t>::Iter iter(&fCache);
14 while (!iter.done()) {
15 (&(*iter))->unref();
16 ++iter;
17 }
18 }
19
20 GrAtlasTextContext::BitmapTextBlob* GrTextBlobCache::createBlob(int glyphCount, int runCount,
21 size_t maxVASize ) {
22 // We allocate size for the BitmapTextBlob itself, plus size for the vertice s array,
23 // and size for the glyphIds array.
24 size_t verticesCount = glyphCount * kVerticesPerGlyph * maxVASize;
25 size_t size = sizeof(BitmapTextBlob) +
26 verticesCount +
27 glyphCount * sizeof(GrGlyph::PackedID) +
28 sizeof(BitmapTextBlob::Run) * runCount;
29
30 BitmapTextBlob* cacheBlob = SkNEW_PLACEMENT(fPool.allocate(size), BitmapText Blob);
31
32 // setup offsets for vertices / glyphs
33 cacheBlob->fVertices = sizeof(BitmapTextBlob) + reinterpret_cast<unsigned ch ar*>(cacheBlob);
34 cacheBlob->fGlyphIDs =
35 reinterpret_cast<GrGlyph::PackedID*>(cacheBlob->fVertices + vertices Count);
36 cacheBlob->fRuns = reinterpret_cast<BitmapTextBlob::Run*>(cacheBlob->fGlyphI Ds + glyphCount);
37
38 // Initialize runs
39 for (int i = 0; i < runCount; i++) {
40 SkNEW_PLACEMENT(&cacheBlob->fRuns[i], BitmapTextBlob::Run);
41 }
42 cacheBlob->fRunCount = runCount;
43 cacheBlob->fPool = &fPool;
44 return cacheBlob;
45 }
OLDNEW
« no previous file with comments | « src/gpu/GrTextBlobCache.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698