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

Side by Side Diff: tools/flags/SkCommonFlags.cpp

Issue 441333003: Add angle config to nanobench and make angle a default config for dm and nanobench. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « bench/nanobench.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkCommonFlags.h" 8 #include "SkCommonFlags.h"
9 #include "SkThreadPool.h" 9 #include "SkThreadPool.h"
10 10
11 DEFINE_string(config, "565 8888 pdf gpu nonrendering", 11 DEFINE_string(config, "565 8888 pdf gpu nonrendering angle",
12 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvp rmsaa16 " 12 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvp rmsaa16 "
13 "gpunull gpudebug angle mesa"); 13 "gpunull gpudebug angle mesa");
14 14
15 DEFINE_bool(cpu, true, "master switch for running CPU-bound work."); 15 DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
16 16
17 DEFINE_bool(dryRun, false, 17 DEFINE_bool(dryRun, false,
18 "just print the tests that would be run, without actually running th em."); 18 "just print the tests that would be run, without actually running th em.");
19 19
20 DEFINE_bool(gpu, true, "master switch for running GPU-bound work."); 20 DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
21 21
(...skipping 23 matching lines...) Expand all
45 DEFINE_bool2(single, z, false, "run tests on a single thread internally."); 45 DEFINE_bool2(single, z, false, "run tests on a single thread internally.");
46 46
47 DEFINE_string(skps, "", "Directory to read skps from."); 47 DEFINE_string(skps, "", "Directory to read skps from.");
48 48
49 DEFINE_int32(threads, SkThreadPool::kThreadPerCore, 49 DEFINE_int32(threads, SkThreadPool::kThreadPerCore,
50 "run threadsafe tests on a threadpool with this many threads."); 50 "run threadsafe tests on a threadpool with this many threads.");
51 51
52 DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver."); 52 DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver.");
53 53
54 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose."); 54 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
OLDNEW
« no previous file with comments | « bench/nanobench.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698