OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CachedGlyphInfo
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/libs/hwui/font/
Font.h
26
#include "
CachedGlyphInfo
.h"
99
typedef void (Font::*RenderGlyph)(
CachedGlyphInfo
*, int, int, uint8_t*,
119
CachedGlyphInfo
* cacheGlyph(SkPaint* paint, glyph_t glyph, bool precaching);
120
void updateGlyphCache(SkPaint* paint, const SkGlyph& skiaGlyph,
CachedGlyphInfo
* glyph,
123
void measureCachedGlyph(
CachedGlyphInfo
* glyph, int x, int y,
126
void drawCachedGlyph(
CachedGlyphInfo
* glyph, int x, int y,
129
void drawCachedGlyphTransformed(
CachedGlyphInfo
* glyph, int x, int y,
132
void drawCachedGlyphBitmap(
CachedGlyphInfo
* glyph, int x, int y,
135
void drawCachedGlyph(
CachedGlyphInfo
* glyph, float x, float hOffset, float vOffset,
138
CachedGlyphInfo
* getCachedGlyph(SkPaint* paint, glyph_t textUnit, bool precaching = false)
[
all
...]
CachedGlyphInfo.h
27
struct
CachedGlyphInfo
{
Font.cpp
134
CachedGlyphInfo
* cachedGlyph = mCachedGlyphs.valueAt(i);
141
void Font::measureCachedGlyph(
CachedGlyphInfo
*glyph, int x, int y,
163
void Font::drawCachedGlyph(
CachedGlyphInfo
* glyph, int x, int y,
182
void Font::drawCachedGlyphTransformed(
CachedGlyphInfo
* glyph, int x, int y,
209
void Font::drawCachedGlyphBitmap(
CachedGlyphInfo
* glyph, int x, int y, uint8_t* bitmap,
229
void Font::drawCachedGlyph(
CachedGlyphInfo
* glyph, float x, float hOffset, float vOffset,
269
CachedGlyphInfo
* Font::getCachedGlyph(SkPaint* paint, glyph_t textUnit, bool precaching) {
270
CachedGlyphInfo
* cachedGlyph = mCachedGlyphs.valueFor(textUnit);
327
CachedGlyphInfo
* cachedGlyph = getCachedGlyph(paint, glyph);
367
CachedGlyphInfo
* cachedGlyph = getCachedGlyph(paint, glyph, true)
[
all
...]
/frameworks/rs/
rsFont.h
91
struct
CachedGlyphInfo
127
DefaultKeyedVector<uint32_t,
CachedGlyphInfo
* > mCachedGlyphs;
128
CachedGlyphInfo
* getCachedUTFChar(int32_t utfChar);
130
CachedGlyphInfo
*cacheGlyph(uint32_t glyph);
131
void updateGlyphCache(
CachedGlyphInfo
*glyph);
132
void measureCachedGlyph(
CachedGlyphInfo
*glyph, int32_t x, int32_t y, Rect *bounds);
133
void drawCachedGlyph(
CachedGlyphInfo
*glyph, int32_t x, int32_t y);
134
void drawCachedGlyph(
CachedGlyphInfo
*glyph, int32_t x, int32_t y,
rsFont.cpp
93
void Font::drawCachedGlyph(
CachedGlyphInfo
*glyph, int32_t x, int32_t y) {
113
void Font::drawCachedGlyph(
CachedGlyphInfo
* glyph, int32_t x, int32_t y,
139
void Font::measureCachedGlyph(
CachedGlyphInfo
*glyph, int32_t x, int32_t y, Rect *bounds) {
199
CachedGlyphInfo
*cachedGlyph = getCachedUTFChar(utfChar);
225
Font::
CachedGlyphInfo
* Font::getCachedUTFChar(int32_t utfChar) {
227
CachedGlyphInfo
*cachedGlyph = mCachedGlyphs.valueFor((uint32_t)utfChar);
239
void Font::updateGlyphCache(
CachedGlyphInfo
*glyph) {
284
Font::
CachedGlyphInfo
*Font::cacheGlyph(uint32_t glyph) {
285
CachedGlyphInfo
*newGlyph = new
CachedGlyphInfo
();
[
all
...]
/frameworks/base/libs/hwui/
FontRenderer.h
31
#include "font/
CachedGlyphInfo
.h"
151
void cacheBitmap(const SkGlyph& glyph,
CachedGlyphInfo
* cachedGlyph,
FontRenderer.cpp
218
void FontRenderer::cacheBitmap(const SkGlyph& glyph,
CachedGlyphInfo
* cachedGlyph,
Completed in 281 milliseconds