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

  /frameworks/base/libs/hwui/
DeviceInfo.h 39 int maxTextureSize() const { return mMaxTextureSize; }
48 int mMaxTextureSize;
DeviceInfo.cpp 45 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
PathCache.h 261 if (width > mMaxTextureSize || height > mMaxTextureSize) {
263 width, height, mMaxTextureSize, mMaxTextureSize);
297 uint32_t mMaxTextureSize;
303 GLuint mMaxTextureSize;
TextureCache.cpp 43 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
44 INIT_LOGD(" Maximum texture dimension is %d pixels", mMaxTextureSize);
101 if (bitmap->width() > mMaxTextureSize || bitmap->height() > mMaxTextureSize) {
103 bitmap->width(), bitmap->height(), mMaxTextureSize, mMaxTextureSize);
TextureCache.h 143 GLint mMaxTextureSize;
GradientCache.h 178 GLint mMaxTextureSize;
PathCache.cpp 190 mMaxTextureSize = maxTextureSize;
326 TaskProcessor<SkBitmap*>(&caches.tasks), mMaxTextureSize(caches.maxTextureSize) {
342 if (width <= mMaxTextureSize && height <= mMaxTextureSize) {
GradientCache.cpp 71 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
142 info.width = min(width, uint32_t(mMaxTextureSize));
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES11RenderEngine.h 40 GLint mMaxTextureSize;
GLES20RenderEngine.h 42 GLint mMaxTextureSize;
GLES11RenderEngine.cpp 36 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
62 return mMaxTextureSize;
GLES20RenderEngine.cpp 45 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
69 return mMaxTextureSize;

Completed in 598 milliseconds