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

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

Issue 1105593002: dm||nanobench --help looks nice when $COLUMNS == 80. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-04-23 (Thursday) 10:50:54 EDT Created 5 years, 8 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 | « tools/flags/SkCommandLineFlags.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 9
10 DEFINE_string(config, "565 8888 gpu nonrendering angle hwui ", 10 DEFINE_string(config, "565 8888 gpu nonrendering angle hwui ", "Options: "
11 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvp rmsaa16 " 11 "565 8888 angle debug gpu gpudebug gpudft gpunull hwui mesa "
12 "gpudft gpunull gpudebug angle mesa (and many more)"); 12 "msaa16 msaa4 nonrendering null nullgpu nvprmsaa16 nvprmsaa4 "
13 "pdf skp svg xps (and maybe more)");
13 14
14 DEFINE_bool(cpu, true, "master switch for running CPU-bound work."); 15 DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
15 16
16 DEFINE_bool(dryRun, false, 17 DEFINE_bool(dryRun, false,
17 "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.");
18 19
19 DEFINE_bool(gpu, true, "master switch for running GPU-bound work."); 20 DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
20 21
21 DEFINE_string(gpuAPI, "", "Force use of specific gpu API. Using \"gl\" " 22 DEFINE_string(gpuAPI, "", "Force use of specific gpu API. Using \"gl\" "
22 "forces OpenGL API. Using \"gles\" forces OpenGL ES API. " 23 "forces OpenGL API. Using \"gles\" forces OpenGL ES API. "
(...skipping 29 matching lines...) Expand all
52 53
53 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose."); 54 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
54 55
55 DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs."); 56 DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
56 57
57 DEFINE_string(key, "", 58 DEFINE_string(key, "",
58 "Space-separated key/value pairs to add to JSON identifying this b uilder."); 59 "Space-separated key/value pairs to add to JSON identifying this b uilder.");
59 DEFINE_string(properties, "", 60 DEFINE_string(properties, "",
60 "Space-separated key/value pairs to add to JSON identifying this r un."); 61 "Space-separated key/value pairs to add to JSON identifying this r un.");
61 62
OLDNEW
« no previous file with comments | « tools/flags/SkCommandLineFlags.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698