Index: src/gpu/GrContext.cpp |
=================================================================== |
--- src/gpu/GrContext.cpp (revision 10354) |
+++ src/gpu/GrContext.cpp (working copy) |
@@ -102,6 +102,7 @@ |
fAARectRenderer = NULL; |
fOvalRenderer = NULL; |
fViewMatrix.reset(); |
+ fMaxTextureSizeOverride = 1 << 20; |
} |
bool GrContext::init(GrBackend backend, GrBackendContext backendContext) { |
@@ -554,7 +555,7 @@ |
} |
int GrContext::getMaxTextureSize() const { |
- return fGpu->caps()->maxTextureSize(); |
+ return GrMin(fGpu->caps()->maxTextureSize(), fMaxTextureSizeOverride); |
} |
int GrContext::getMaxRenderTargetSize() const { |