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

Unified Diff: src/gpu/text/GrTextBlobCache.cpp

Issue 1686113002: Remove GrTextBlobCache/GrAtlasTextBlob friendliness (Closed) Base URL: https://skia.googlesource.com/skia.git@tc-cleanup-1
Patch Set: build warnings Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/text/GrTextBlobCache.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/text/GrTextBlobCache.cpp
diff --git a/src/gpu/text/GrTextBlobCache.cpp b/src/gpu/text/GrTextBlobCache.cpp
index 7fa2d1a80a14b3721e20bb6c82e29c311b86d0eb..ce74977e49fa1b65628706f216acf8a337b2a9a3 100644
--- a/src/gpu/text/GrTextBlobCache.cpp
+++ b/src/gpu/text/GrTextBlobCache.cpp
@@ -7,43 +7,10 @@
#include "GrTextBlobCache.h"
-static const int kVerticesPerGlyph = 4;
-
GrTextBlobCache::~GrTextBlobCache() {
this->freeAll();
}
-GrAtlasTextBlob* GrTextBlobCache::createBlob(int glyphCount, int runCount, size_t maxVASize) {
- // We allocate size for the GrAtlasTextBlob itself, plus size for the vertices array,
- // and size for the glyphIds array.
- size_t verticesCount = glyphCount * kVerticesPerGlyph * maxVASize;
- size_t size = sizeof(GrAtlasTextBlob) +
- verticesCount +
- glyphCount * sizeof(GrGlyph**) +
- sizeof(GrAtlasTextBlob::Run) * runCount;
-
- void* allocation = fPool.allocate(size);
- if (CACHE_SANITY_CHECK) {
- sk_bzero(allocation, size);
- }
-
- GrAtlasTextBlob* cacheBlob = new (allocation) GrAtlasTextBlob;
- cacheBlob->fSize = size;
-
- // setup offsets for vertices / glyphs
- cacheBlob->fVertices = sizeof(GrAtlasTextBlob) + reinterpret_cast<unsigned char*>(cacheBlob);
- cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount);
- cacheBlob->fRuns = reinterpret_cast<GrAtlasTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount);
-
- // Initialize runs
- for (int i = 0; i < runCount; i++) {
- new (&cacheBlob->fRuns[i]) GrAtlasTextBlob::Run;
- }
- cacheBlob->fRunCount = runCount;
- cacheBlob->fPool = &fPool;
- return cacheBlob;
-}
-
void GrTextBlobCache::freeAll() {
SkTDynamicHash<GrAtlasTextBlob, GrAtlasTextBlob::Key>::Iter iter(&fCache);
while (!iter.done()) {
« no previous file with comments | « src/gpu/text/GrTextBlobCache.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698