OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cachedGlyph
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/libs/hwui/font/
Font.cpp
135
CachedGlyphInfo*
cachedGlyph
= mCachedGlyphs.valueAt(i);
136
if (!cacheTexture ||
cachedGlyph
->mCacheTexture == cacheTexture) {
137
cachedGlyph
->mIsValid = false;
271
CachedGlyphInfo*
cachedGlyph
= mCachedGlyphs.valueFor(textUnit);
272
if (
cachedGlyph
) {
274
if (!
cachedGlyph
->mIsValid) {
277
updateGlyphCache(paint, skiaGlyph, autoCache.getCache(),
cachedGlyph
, precaching);
280
cachedGlyph
= cacheGlyph(paint, textUnit, precaching);
283
return
cachedGlyph
;
328
CachedGlyphInfo*
cachedGlyph
= getCachedGlyph(paint, glyph)
[
all
...]
/frameworks/rs/
rsFont.cpp
199
CachedGlyphInfo *
cachedGlyph
= getCachedUTFChar(utfChar);
202
if (
cachedGlyph
->mIsValid) {
205
drawCachedGlyph(
cachedGlyph
, penX, penY);
208
drawCachedGlyph(
cachedGlyph
, penX, penY, bitmap, bitmapW, bitmapH);
211
measureCachedGlyph(
cachedGlyph
, penX, penY, bounds);
216
penX += (
cachedGlyph
->mAdvanceX >> 6);
227
CachedGlyphInfo *
cachedGlyph
= mCachedGlyphs.valueFor((uint32_t)utfChar);
228
if (
cachedGlyph
== NULL) {
229
cachedGlyph
= cacheGlyph((uint32_t)utfChar);
232
if (!
cachedGlyph
->mIsValid)
[
all
...]
/frameworks/base/libs/hwui/
FontRenderer.cpp
218
void FontRenderer::cacheBitmap(const SkGlyph& glyph, CachedGlyphInfo*
cachedGlyph
,
225
cachedGlyph
->mIsValid = true;
226
cachedGlyph
->mCacheTexture = NULL;
230
cachedGlyph
->mIsValid = false;
278
cachedGlyph
->mCacheTexture = cacheTexture;
394
cachedGlyph
->mIsValid = true;
FontRenderer.h
151
void cacheBitmap(const SkGlyph& glyph, CachedGlyphInfo*
cachedGlyph
,
Completed in 3017 milliseconds