OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:maxTextureSize
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/skia/src/gpu/
GrDrawTargetCaps.h
48
int
maxTextureSize
() const { return fMaxTextureSize; }
/external/skia/src/gpu/
GrDrawTargetCaps.h
48
int
maxTextureSize
() const { return fMaxTextureSize; }
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
FECustomFilter.cpp
315
int
maxTextureSize
= 0;
316
m_context->getIntegerv(GL_MAX_TEXTURE_SIZE, &
maxTextureSize
);
317
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 171 milliseconds