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

  /external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.h 45 TilingData(int maxTextureSize, int totalSizeX, int totalSizeY, bool hasBorderTexels);
48 int maxTextureSize() const { return m_maxTextureSize; }
DrawingBuffer.cpp 201 int maxTextureSize = 0;
202 m_context->getIntegerv(GraphicsContext3D::MAX_TEXTURE_SIZE, &maxTextureSize);
203 if (newSize.height() > maxTextureSize || newSize.width() > maxTextureSize) {
Texture.cpp 50 Texture::Texture(GraphicsContext3D* context, PassOwnPtr<Vector<unsigned int> > tileTextureIds, Format format, int width, int height, int maxTextureSize)
53 , m_tiles(maxTextureSize, width, height, true)
90 int maxTextureSize = 0;
91 context->getIntegerv(GraphicsContext3D::MAX_TEXTURE_SIZE, &maxTextureSize);
92 TilingData tiling(maxTextureSize, width, height, true);
119 return adoptRef(new Texture(context, textureIds.leakPtr(), format, width, height, maxTextureSize));
167 min(m_tiles.maxTextureSize(), m_tiles.borderTexels() + updateRectSanitized.width()) *
168 min(m_tiles.maxTextureSize(), m_tiles.borderTexels() + updateRectSanitized.height());
  /external/webkit/Source/WebCore/platform/graphics/android/
TilesManager.cpp 86 static GLint maxTextureSize = 0;
87 if (!maxTextureSize)
88 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
89 return maxTextureSize;
  /frameworks/base/libs/hwui/
Caches.h 187 GLint maxTextureSize;
ShapeCache.h 433 GLint maxTextureSize;
434 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
435 mMaxTextureSize = maxTextureSize;
  /frameworks/base/libs/gui/tests/
SurfaceTexture_test.cpp     [all...]

Completed in 192 milliseconds