Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Unified Diff: gpu/command_buffer/tests/gl_manager.cc

Issue 23130004: Enforce a memory limit on MappedMemoryManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Set chunk size Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/tests/gl_manager.cc
diff --git a/gpu/command_buffer/tests/gl_manager.cc b/gpu/command_buffer/tests/gl_manager.cc
index 54ff6459e7eb847ab0cfdad92d71ed06baa8a671..47c14d213cf7eab30b15deb65ef9bc0f49c2ad66 100644
--- a/gpu/command_buffer/tests/gl_manager.cc
+++ b/gpu/command_buffer/tests/gl_manager.cc
@@ -194,7 +194,8 @@ void GLManager::Initialize(const GLManager::Options& options) {
ASSERT_TRUE(gles2_implementation_->Initialize(
kStartTransferBufferSize,
kMinTransferBufferSize,
- kMaxTransferBufferSize)) << "Could not init GLES2Implementation";
+ kMaxTransferBufferSize,
+ GLES2Implementation::kNoLimit)) << "Could not init GLES2Implementation";
MakeCurrent();
}

Powered by Google App Engine
This is Rietveld 408576698