HomeSort by relevance Sort by last modified time
    Searched refs:CacheTextureLine (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/rs/
rsFont.h 165 struct CacheTextureLine {
172 CacheTextureLine(uint32_t maxHeight, uint32_t maxWidth, uint32_t currentRow, uint32_t currentCol)
180 Vector<CacheTextureLine*> mCacheLines;
rsFont.cpp 540 mCacheLines.push(new CacheTextureLine(16, texType->getDimX(), nextLine, 0));
542 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
544 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
546 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
548 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
550 mCacheLines.push(new CacheTextureLine(40, texType->getDimX(), nextLine, 0));
552 mCacheLines.push(new CacheTextureLine(texType->getDimY() - nextLine, texType->getDimX(), nextLine, 0));
815 bool FontState::CacheTextureLine::fitBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY) {
  /frameworks/base/libs/hwui/
FontRenderer.h 237 struct CacheTextureLine {
244 CacheTextureLine(uint16_t maxWidth, uint16_t maxHeight, uint32_t currentRow,
289 Vector<CacheTextureLine*> mCacheLines;
FontRenderer.cpp 497 mCacheLines.push(new CacheTextureLine(mCacheWidth, 18, nextLine, 0));
499 mCacheLines.push(new CacheTextureLine(mCacheWidth, 26, nextLine, 0));
501 mCacheLines.push(new CacheTextureLine(mCacheWidth, 26, nextLine, 0));
503 mCacheLines.push(new CacheTextureLine(mCacheWidth, 34, nextLine, 0));
505 mCacheLines.push(new CacheTextureLine(mCacheWidth, 34, nextLine, 0));
507 mCacheLines.push(new CacheTextureLine(mCacheWidth, 42, nextLine, 0));
513 mCacheLines.push(new CacheTextureLine(mCacheWidth, nextSize, nextLine, 0));
518 mCacheLines.push(new CacheTextureLine(mCacheWidth, mCacheHeight - nextLine, nextLine, 0));
582 CacheTextureLine* cl = mCacheLines[i];

Completed in 630 milliseconds