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

  /frameworks/base/libs/hwui/
FontRenderer.cpp 333 mCacheHeight = DEFAULT_TEXT_CACHE_HEIGHT;
351 mCacheHeight = atoi(property);
354 INIT_LOGD(" Using default text cache height of %i pixels", mCacheHeight);
398 if (mCacheHeight < MAX_TEXT_CACHE_HEIGHT) {
470 mCacheHeight = MAX_TEXT_CACHE_HEIGHT;
473 mTextTexture = new uint8_t[mCacheWidth * mCacheHeight];
474 memset(mTextTexture, 0, mCacheWidth * mCacheHeight * sizeof(uint8_t));
485 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, mCacheWidth, mCacheHeight, 0,
512 while (nextSize < (int)(mCacheHeight - nextLine - (2 * nextSize))) {
518 mCacheLines.push(new CacheTextureLine(mCacheWidth, mCacheHeight - nextLine, nextLine, 0))
    [all...]
FontRenderer.h 229 return mCacheHeight;
287 uint32_t mCacheHeight;

Completed in 36 milliseconds