Lines Matching defs:cacheBlob
26 BitmapTextBlob* cacheBlob = SkNEW_PLACEMENT(fPool.allocate(size), BitmapTextBlob);
29 cacheBlob->fVertices = sizeof(BitmapTextBlob) + reinterpret_cast<unsigned char*>(cacheBlob);
30 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount);
31 cacheBlob->fRuns = reinterpret_cast<BitmapTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount);
35 SkNEW_PLACEMENT(&cacheBlob->fRuns[i], BitmapTextBlob::Run);
37 cacheBlob->fRunCount = runCount;
38 cacheBlob->fPool = &fPool;
39 return cacheBlob;