OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMaxTextureSize
(Results
1 - 10
of
10
) sorted by null
/frameworks/native/services/surfaceflinger/RenderEngine/
GLES11RenderEngine.h
39
GLint
mMaxTextureSize
;
GLES20RenderEngine.h
41
GLint
mMaxTextureSize
;
GLES11RenderEngine.cpp
33
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &
mMaxTextureSize
);
65
return
mMaxTextureSize
;
GLES20RenderEngine.cpp
41
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &
mMaxTextureSize
);
71
return
mMaxTextureSize
;
/frameworks/base/libs/hwui/
PathCache.h
283
if (width >
mMaxTextureSize
|| height >
mMaxTextureSize
) {
285
width, height,
mMaxTextureSize
,
mMaxTextureSize
);
316
uint32_t
mMaxTextureSize
;
322
GLuint
mMaxTextureSize
;
TextureCache.cpp
73
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &
mMaxTextureSize
);
74
INIT_LOGD(" Maximum texture dimension is %d pixels",
mMaxTextureSize
);
128
if (bitmap->width() >
mMaxTextureSize
|| bitmap->height() >
mMaxTextureSize
) {
130
bitmap->width(), bitmap->height(),
mMaxTextureSize
,
mMaxTextureSize
);
TextureCache.h
137
GLint
mMaxTextureSize
;
GradientCache.h
189
GLint
mMaxTextureSize
;
PathCache.cpp
178
mMaxTextureSize
= maxTextureSize;
340
TaskProcessor<SkBitmap*>(&caches.tasks),
mMaxTextureSize
(caches.maxTextureSize) {
358
if (width <=
mMaxTextureSize
&& height <=
mMaxTextureSize
) {
GradientCache.cpp
76
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &
mMaxTextureSize
);
166
info.width = min(width, uint32_t(
mMaxTextureSize
));
Completed in 172 milliseconds