Searched refs:mMaxTextureSize (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/libs/hwui/ |
D | PathCache.h | 283 if (width > mMaxTextureSize || height > mMaxTextureSize) { in checkTextureSize() 285 width, height, mMaxTextureSize, mMaxTextureSize); in checkTextureSize() 316 uint32_t mMaxTextureSize; 322 GLuint mMaxTextureSize; variable
|
D | TextureCache.cpp | 73 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()
|
D | TextureCache.h | 137 GLint mMaxTextureSize; variable
|
D | PathCache.cpp | 178 mMaxTextureSize = maxTextureSize; in init() 320 TaskProcessor<SkBitmap*>(&caches.tasks), mMaxTextureSize(caches.maxTextureSize) { in PathProcessor() 338 if (width <= mMaxTextureSize && height <= mMaxTextureSize) { in onProcess()
|
D | GradientCache.cpp | 76 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); in GradientCache() 166 info.width = min(width, uint32_t(mMaxTextureSize)); in getGradientInfo()
|
D | GradientCache.h | 189 GLint mMaxTextureSize; variable
|
/frameworks/native/services/surfaceflinger/ |
D | SurfaceFlinger.h | 424 GLint mMaxTextureSize; variable
|
D | SurfaceFlinger.cpp | 427 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); in initializeGL() 470 ALOGI("GL_MAX_TEXTURE_SIZE = %d", mMaxTextureSize); in initializeGL() 570 return mMaxTextureSize; in getMaxTextureSize()
|