Searched refs:cacheX (Results 1 – 2 of 2) sorted by relevance
/frameworks/rs/ |
D | rsFont.cpp | 123 uint32_t cacheX = 0, cacheY = 0; in drawCachedGlyph() local 125 for (cacheX = glyph->mBitmapMinX, bX = nPenX; cacheX < endX; cacheX++, bX++) { in drawCachedGlyph() 131 uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX]; in drawCachedGlyph() 459 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; in cacheBitmap() local 460 for (cacheX = startX, bX = 0; cacheX < endX; cacheX ++, bX ++) { in cacheBitmap() 463 cacheBuffer[cacheY*cacheWidth + cacheX] = tempCol; in cacheBitmap()
|
/frameworks/base/libs/hwui/ |
D | FontRenderer.cpp | 152 uint32_t cacheX = 0, cacheY = 0; in drawCachedGlyphBitmap() local 154 for (cacheX = glyph->mStartX, bX = nPenX; cacheX < endX; cacheX++, bX++) { in drawCachedGlyphBitmap() 162 uint8_t tempCol = cacheBuffer[cacheY * cacheWidth + cacheX]; in drawCachedGlyphBitmap() 679 uint32_t cacheX = 0, bX = 0, cacheY = 0, bY = 0; in cacheBitmap() local 680 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) { in cacheBitmap() 683 cacheBuffer[cacheY * cacheWidth + cacheX] = mGammaTable[tempCol]; in cacheBitmap()
|