Home
last modified time | relevance | path

Searched refs:SkAutoGlyphCache (Results 1 – 25 of 32) sorted by relevance

12

/external/skqp/src/core/
DSkGlyphCache.h256 class SkAutoGlyphCache : public std::unique_ptr<SkGlyphCache, SkGlyphCache::AttachCacheFunctor> {
260 SkAutoGlyphCache() = default;
261 SkAutoGlyphCache(SkGlyphCache* cache) : INHERITED(cache) {} in SkAutoGlyphCache() function
262 SkAutoGlyphCache(SkTypeface* typeface, const SkScalerContextEffects& effects, in SkAutoGlyphCache() function
267 SkAutoGlyphCache(const SkPaint& paint, in SkAutoGlyphCache() function
275 SkAutoGlyphCache(const SkPaint& paint, in SkAutoGlyphCache() function
286 class SkAutoGlyphCacheNoGamma : public SkAutoGlyphCache {
291 : SkAutoGlyphCache(paint, surfaceProps, SkScalerContextFlags::kNone, matrix) in SkAutoGlyphCacheNoGamma()
294 #define SkAutoGlyphCache(...) SK_REQUIRE_LOCAL_VAR(SkAutoGlyphCache) macro
DSkOverdrawCanvas.cpp65 SkAutoGlyphCache cache(paint, &props, SkScalerContextFlags::kNone, &this->getTotalMatrix()); in onDrawText()
77 SkAutoGlyphCache cache(paint, &props, SkScalerContextFlags::kNone, &this->getTotalMatrix()); in drawPosTextCommon()
DSkPaint.cpp433 SkAutoGlyphCache autoCache(*this, nullptr, nullptr); in textToGlyphs()
491 SkAutoGlyphCache autoCache(*this, nullptr, nullptr); in containsText()
541 SkAutoGlyphCache autoCache(*this, &props, nullptr); in glyphsToUnichars()
807 SkAutoGlyphCache autoCache(paint, nullptr, nullptr); in measureText()
861 SkAutoGlyphCache autoCache(paint, nullptr, nullptr); in breakText()
968 SkAutoGlyphCache autoCache(paint, nullptr, nullptr); in getTextWidths()
/external/skia/src/core/
DSkGlyphCache.h256 class SkAutoGlyphCache : public std::unique_ptr<SkGlyphCache, SkGlyphCache::AttachCacheFunctor> {
260 SkAutoGlyphCache() = default;
261 SkAutoGlyphCache(SkGlyphCache* cache) : INHERITED(cache) {} in SkAutoGlyphCache() function
262 SkAutoGlyphCache(SkTypeface* typeface, const SkScalerContextEffects& effects, in SkAutoGlyphCache() function
267 SkAutoGlyphCache(const SkPaint& paint, in SkAutoGlyphCache() function
275 SkAutoGlyphCache(const SkPaint& paint, in SkAutoGlyphCache() function
286 class SkAutoGlyphCacheNoGamma : public SkAutoGlyphCache {
291 : SkAutoGlyphCache(paint, surfaceProps, SkScalerContextFlags::kNone, matrix) in SkAutoGlyphCacheNoGamma()
294 #define SkAutoGlyphCache(...) SK_REQUIRE_LOCAL_VAR(SkAutoGlyphCache) macro
DSkOverdrawCanvas.cpp65 SkAutoGlyphCache cache(paint, &props, SkScalerContextFlags::kNone, &this->getTotalMatrix()); in onDrawText()
77 SkAutoGlyphCache cache(paint, &props, SkScalerContextFlags::kNone, &this->getTotalMatrix()); in drawPosTextCommon()
DSkPaint.cpp433 SkAutoGlyphCache autoCache(*this, nullptr, nullptr); in textToGlyphs()
491 SkAutoGlyphCache autoCache(*this, nullptr, nullptr); in containsText()
541 SkAutoGlyphCache autoCache(*this, &props, nullptr); in glyphsToUnichars()
807 SkAutoGlyphCache autoCache(paint, nullptr, nullptr); in measureText()
861 SkAutoGlyphCache autoCache(paint, nullptr, nullptr); in breakText()
968 SkAutoGlyphCache autoCache(paint, nullptr, nullptr); in getTextWidths()
DSkDraw.cpp1553 SkAutoGlyphCache cache(paint, props, this->scalerContextFlags(), fMatrix); in drawText()
1584 SkAutoGlyphCache cache(paint, props, this->scalerContextFlags(), nullptr); in drawPosText_asPaths()
1631 SkAutoGlyphCache cache(paint, props, this->scalerContextFlags(), fMatrix); in drawPosText()
/external/skqp/src/pdf/
DSkPDFFont.h18 class SkAutoGlyphCache; variable
51 static SkAutoGlyphCache MakeVectorCache(SkTypeface*, int* sizeOut);
DSkPDFFont.cpp29 SkAutoGlyphCache SkPDFFont::MakeVectorCache(SkTypeface* face, int* size) { in MakeVectorCache()
42 SkAutoGlyphCache glyphCache(tmpPaint, &props, nullptr); in MakeVectorCache()
462 SkAutoGlyphCache glyphCache = SkPDFFont::MakeVectorCache(face, &emSize); in getFontSubset()
538 SkAutoGlyphCache glyphCache = SkPDFFont::MakeVectorCache(typeface, &emSize); in populate_type_1_font()
633 SkAutoGlyphCache cache = SkPDFFont::MakeVectorCache(typeface, &unitsPerEm); in add_type3_font_info()
/external/skia/src/pdf/
DSkPDFFont.h18 class SkAutoGlyphCache; variable
51 static SkAutoGlyphCache MakeVectorCache(SkTypeface*, int* sizeOut);
DSkPDFFont.cpp29 SkAutoGlyphCache SkPDFFont::MakeVectorCache(SkTypeface* face, int* size) { in MakeVectorCache()
42 SkAutoGlyphCache glyphCache(tmpPaint, &props, nullptr); in MakeVectorCache()
462 SkAutoGlyphCache glyphCache = SkPDFFont::MakeVectorCache(face, &emSize); in getFontSubset()
538 SkAutoGlyphCache glyphCache = SkPDFFont::MakeVectorCache(typeface, &emSize); in populate_type_1_font()
633 SkAutoGlyphCache cache = SkPDFFont::MakeVectorCache(typeface, &unitsPerEm); in add_type3_font_info()
/external/skqp/bench/
DPathTextBench.cpp49 SkAutoGlyphCache agc(defaultPaint, nullptr, &SkMatrix::I()); in onDelayedSetup()
/external/skia/bench/
DPathTextBench.cpp49 SkAutoGlyphCache agc(defaultPaint, nullptr, &SkMatrix::I()); in onDelayedSetup()
/external/skqp/include/core/
DSkPaint.h18 class SkAutoGlyphCache; variable
1721 friend class SkAutoGlyphCache; variable
/external/skia/include/core/
DSkPaint.h18 class SkAutoGlyphCache; variable
1723 friend class SkAutoGlyphCache; variable
/external/skqp/src/gpu/text/
DGrTextUtils.cpp130 SkAutoGlyphCache autoCache(paint, &props, nullptr); in DrawBigPosText()
DGrAtlasTextBlob.h576 GrAtlasGlyphCache*, SkAutoGlyphCache*);
607 SkAutoGlyphCache* fLazyCache;
DGrAtlasTextBlobVertexRegenerator.cpp196 SkAutoGlyphCache* lazyCache) in VertexRegenerator()
/external/skia/src/gpu/text/
DGrAtlasTextBlob.h571 SkAutoGlyphCache*);
604 SkAutoGlyphCache* fLazyCache;
DGrAtlasTextBlobVertexRegenerator.cpp198 GrAtlasManager* fullAtlasManager, SkAutoGlyphCache* lazyCache) in VertexRegenerator()
/external/skqp/src/atlastext/
DSkAtlasTextTarget.cpp184 SkAutoGlyphCache glyphCache; in executeForTextTarget()
/external/skia/src/atlastext/
DSkAtlasTextTarget.cpp184 SkAutoGlyphCache autoGlyphCache; in executeForTextTarget()
/external/skqp/src/gpu/ops/
DGrAtlasTextOp.cpp259 SkAutoGlyphCache glyphCache; in onPrepareDraws()
/external/skia/samplecode/
DSamplePathText.cpp27 SkAutoGlyphCache agc(defaultPaint, nullptr, &SkMatrix::I()); in PathText()
/external/skqp/samplecode/
DSamplePathText.cpp27 SkAutoGlyphCache agc(defaultPaint, nullptr, &SkMatrix::I()); in PathText()

12