Home
last modified time | relevance | path

Searched refs:mMaxTextureSize (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/libs/hwui/
DPathCache.h283 if (width > mMaxTextureSize || height > mMaxTextureSize) { in checkTextureSize()
285 width, height, mMaxTextureSize, mMaxTextureSize); in checkTextureSize()
316 uint32_t mMaxTextureSize;
322 GLuint mMaxTextureSize; variable
DTextureCache.cpp73 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); in init()
74 INIT_LOGD(" Maximum texture dimension is %d pixels", mMaxTextureSize); in init()
128 if (bitmap->width() > mMaxTextureSize || bitmap->height() > mMaxTextureSize) { in get()
130 bitmap->width(), bitmap->height(), mMaxTextureSize, mMaxTextureSize); in get()
DTextureCache.h137 GLint mMaxTextureSize; variable
DPathCache.cpp178 mMaxTextureSize = maxTextureSize; in init()
320 TaskProcessor<SkBitmap*>(&caches.tasks), mMaxTextureSize(caches.maxTextureSize) { in PathProcessor()
338 if (width <= mMaxTextureSize && height <= mMaxTextureSize) { in onProcess()
DGradientCache.cpp76 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); in GradientCache()
166 info.width = min(width, uint32_t(mMaxTextureSize)); in getGradientInfo()
DGradientCache.h189 GLint mMaxTextureSize; variable
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.h424 GLint mMaxTextureSize; variable
DSurfaceFlinger.cpp427 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); in initializeGL()
470 ALOGI("GL_MAX_TEXTURE_SIZE = %d", mMaxTextureSize); in initializeGL()
570 return mMaxTextureSize; in getMaxTextureSize()