Home | History | Annotate | Download | only in hwui

Lines Matching refs:mCacheHeight

332     mCacheHeight = DEFAULT_TEXT_CACHE_HEIGHT;
350 mCacheHeight = atoi(property);
353 INIT_LOGD(" Using default text cache height of %i pixels", mCacheHeight);
397 if (mCacheHeight < MAX_TEXT_CACHE_HEIGHT) {
469 mCacheHeight = MAX_TEXT_CACHE_HEIGHT;
472 mTextTexture = new uint8_t[mCacheWidth * mCacheHeight];
473 memset(mTextTexture, 0, mCacheWidth * mCacheHeight * sizeof(uint8_t));
484 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, mCacheWidth, mCacheHeight, 0,
511 while (nextSize < (int)(mCacheHeight - nextLine - (2 * nextSize))) {
517 mCacheLines.push(new CacheTextureLine(mCacheWidth, mCacheHeight - nextLine, nextLine, 0));