Searched defs:bitmapW (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/rs/
H A DrsFont.cpp111 uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH) {
126 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
131 bitmap[bY * bitmapW + bX] = tempCol;
161 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) {
205 drawCachedGlyph(cachedGlyph, penX, penY, bitmap, bitmapW, bitmapH);
729 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) {
750 mode, bounds, bitmap, bitmapW, bitmapH);
110 drawCachedGlyph(CachedGlyphInfo* glyph, int32_t x, int32_t y, uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
158 renderUTF(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t start, int32_t numGlyphs, RenderMode mode, Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
725 renderText(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t startIndex, int32_t numGlyphs, Font::RenderMode mode, Font::Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp114 uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH) {
128 if (bX < 0 || bY < 0 || bX >= (int32_t) bitmapW || bY >= (int32_t) bitmapH) {
133 bitmap[bY * bitmapW + bX] = tempCol;
158 int numGlyphs, int x, int y, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) {
159 if (bitmap != NULL && bitmapW > 0 && bitmapH > 0) {
161 bitmapW, bitmapH, NULL);
182 uint32_t bitmapW, uint32_t bitmapH,Rect *bounds) {
218 drawCachedGlyph(cachedGlyph, (int) floorf(penX), penY, bitmap, bitmapW, bitmapH);
113 drawCachedGlyph(CachedGlyphInfo* glyph, int x, int y, uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
157 render(SkPaint* paint, const char* text, uint32_t start, uint32_t len, int numGlyphs, int x, int y, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
180 render(SkPaint* paint, const char* text, uint32_t start, uint32_t len, int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,Rect *bounds) argument

Completed in 32 milliseconds