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

Side by Side Diff: cc/base/switches.cc

Issue 2726263003: cc::ResourcePool - Re-use larger resources for smaller requests (Closed)
Patch Set: rebase Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/base/switches.h" 5 #include "cc/base/switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace cc { 9 namespace cc {
10 namespace switches { 10 namespace switches {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 // Prevents the layer tree unit tests from timing out. 111 // Prevents the layer tree unit tests from timing out.
112 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout"; 112 const char kCCLayerTreeTestNoTimeout[] = "cc-layer-tree-test-no-timeout";
113 113
114 // Increases timeout for memory checkers. 114 // Increases timeout for memory checkers.
115 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout"; 115 const char kCCLayerTreeTestLongTimeout[] = "cc-layer-tree-test-long-timeout";
116 116
117 // Makes pixel tests write their output instead of read it. 117 // Makes pixel tests write their output instead of read it.
118 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests"; 118 const char kCCRebaselinePixeltests[] = "cc-rebaseline-pixeltests";
119 119
120 // Disable re-use of non-exact resources to fulfill ResourcePool requests.
121 // Intended only for use in layout tests to reduce noise.
danakj 2017/05/04 21:48:37 it would apply to any pixel tests right? say we ha
ericrk 2017/05/05 23:18:38 Yup, anywhere where we aren't doing fuzzy comparis
122 const char kDisallowNonExactResourceReuse[] =
123 "disallow-non-exact-resource-reuse";
124
120 } // namespace switches 125 } // namespace switches
121 } // namespace cc 126 } // namespace cc
OLDNEW
« no previous file with comments | « cc/base/switches.h ('k') | cc/output/gl_renderer.cc » ('j') | cc/output/renderer_settings.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698