HomeSort by relevance Sort by last modified time
    Searched defs:maxTextureSize (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/skia/src/gpu/
GrDrawTargetCaps.h 42 int maxTextureSize() const { return fMaxTextureSize; }
SkGpuDevice.cpp     [all...]
  /external/skia/src/gpu/
GrDrawTargetCaps.h 42 int maxTextureSize() const { return fMaxTextureSize; }
SkGpuDevice.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
FECustomFilter.cpp 318 int maxTextureSize = 0;
319 m_context->getIntegerv(GraphicsContext3D::MAX_TEXTURE_SIZE, &maxTextureSize);
320 if (newContextSize.height() > maxTextureSize || newContextSize.width() > maxTextureSize)
  /frameworks/base/libs/hwui/
Layer.cpp 78 const uint32_t maxTextureSize = caches.maxTextureSize;
79 if (desiredWidth > maxTextureSize || desiredHeight > maxTextureSize) {
81 desiredWidth, desiredHeight, maxTextureSize, maxTextureSize);
LayerRenderer.cpp 207 const uint32_t maxTextureSize = caches.maxTextureSize;
208 if (layer->getWidth() > maxTextureSize || layer->getHeight() > maxTextureSize) {
210 width, height, maxTextureSize, maxTextureSize);
362 if (layer && bitmap->width() <= caches.maxTextureSize &&
363 bitmap->height() <= caches.maxTextureSize) {
PathCache.cpp 176 GLint maxTextureSize;
177 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
178 mMaxTextureSize = maxTextureSize;
340 TaskProcessor<SkBitmap*>(&caches.tasks), mMaxTextureSize(caches.maxTextureSize) {
Caches.h 313 GLint maxTextureSize;
FontRenderer.cpp 135 uint32_t maxTextureSize = (uint32_t) Caches::getInstance().maxTextureSize;
136 mSmallCacheWidth = mSmallCacheWidth > maxTextureSize ? maxTextureSize : mSmallCacheWidth;
137 mSmallCacheHeight = mSmallCacheHeight > maxTextureSize ? maxTextureSize : mSmallCacheHeight;
138 mLargeCacheWidth = mLargeCacheWidth > maxTextureSize ? maxTextureSize : mLargeCacheWidth;
139 mLargeCacheHeight = mLargeCacheHeight > maxTextureSize ? maxTextureSize : mLargeCacheHeight
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
teximage.c     [all...]
  /external/mesa3d/src/mesa/main/
teximage.c     [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp     [all...]

Completed in 312 milliseconds