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 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))
    [all...]
FontRenderer.h 229 return mCacheHeight;
287 uint32_t mCacheHeight;

Completed in 329 milliseconds