| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |