Searched refs:bitmapW (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/libs/hwui/font/ |
D | FontCacheHistoryTracker.cpp | 27 glyph.startX, glyph.startY, glyph.bitmapW, glyph.bitmapH, glyph.generation); in dumpCachedGlyph() 41 if (glyph.bitmapW == 0 && glyph.bitmapH == 0) { in dumpUploadEntry() 69 entry.glyph.bitmapW = glyphInfo->mBitmapWidth; in glyphRendered() 82 glyph.bitmapW = glyphW; in glyphUploaded() 92 glyph.bitmapW = 0; in glyphsCleared()
|
D | Font.h | 110 RenderMode mode, uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, 122 void measureCachedGlyph(CachedGlyphInfo* glyph, int x, int y, uint8_t* bitmap, uint32_t bitmapW, 124 void drawCachedGlyph(CachedGlyphInfo* glyph, int x, int y, uint8_t* bitmap, uint32_t bitmapW, 127 uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, 130 uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* pos);
|
D | FontCacheHistoryTracker.h | 45 uint16_t bitmapW; member
|
D | Font.cpp | 136 uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* pos) { in measureCachedGlyph() argument 157 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int x, int y, uint8_t* bitmap, uint32_t bitmapW, in drawCachedGlyph() argument 176 uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, in drawCachedGlyphTransformed() argument 372 RenderMode mode, uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH, in render() argument 406 (*this.*render)(cachedGlyph, penX, penY, bitmap, bitmapW, bitmapH, bounds, positions); in render()
|
/frameworks/rs/ |
D | rsFont.h | 88 uint8_t *bitmap = nullptr, uint32_t bitmapW = 0, uint32_t bitmapH = 0); 135 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH); 152 uint8_t *bitmap = nullptr, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
|
D | rsFont.cpp | 113 uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH) { in drawCachedGlyph() argument 128 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) { in drawCachedGlyph() 133 bitmap[bY * bitmapW + bX] = tempCol; in drawCachedGlyph() 163 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) { in renderUTF() argument 207 drawCachedGlyph(cachedGlyph, penX, penY, bitmap, bitmapW, bitmapH); in renderUTF() 748 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) { in renderText() argument 775 mode, bounds, bitmap, bitmapW, bitmapH); in renderText()
|