OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_maxTextureSize
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp
127
,
m_maxTextureSize
(0)
284
m_context->getIntegerv(GL_MAX_TEXTURE_SIZE, &
m_maxTextureSize
);
616
if (adjustedSize.height() >
m_maxTextureSize
)
617
adjustedSize.setHeight(
m_maxTextureSize
);
619
if (adjustedSize.width() >
m_maxTextureSize
)
620
adjustedSize.setWidth(
m_maxTextureSize
);
DrawingBuffer.h
204
int
m_maxTextureSize
;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.cpp
649
m_maxTextureSize
= 0;
650
m_context->getIntegerv(GL_MAX_TEXTURE_SIZE, &
m_maxTextureSize
);
651
m_maxTextureLevel = WebGLTexture::computeLevelCount(
m_maxTextureSize
,
m_maxTextureSize
);
[
all
...]
WebGLRenderingContext.h
469
GC3Dint
m_maxTextureSize
;
[
all
...]
Completed in 59 milliseconds