OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:maxTextureSize
(Results
1 - 6
of
6
) 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
84
static GLint
maxTextureSize
= 0;
85
if (!
maxTextureSize
)
86
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &
maxTextureSize
);
87
return
maxTextureSize
;
/frameworks/base/libs/hwui/
Caches.h
175
GLint
maxTextureSize
;
ShapeCache.h
433
GLint
maxTextureSize
;
434
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &
maxTextureSize
);
435
mMaxTextureSize =
maxTextureSize
;
Completed in 38 milliseconds