Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / skia / tools / flags / SkCommonFlags.cpp
1 /*
2  * Copyright 2014 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7
8 #include "SkCommonFlags.h"
9
10 DEFINE_string(config, "565 8888 pdf gpu nonrendering angle nvprmsaa4",
11               "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvprmsaa16 "
12               "gpunull gpudebug angle mesa");
13
14 DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
15
16 DEFINE_bool(dryRun, false,
17             "just print the tests that would be run, without actually running them.");
18
19 DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
20
21 DEFINE_string(gpuAPI, "", "Force use of specific gpu API.  Using \"gl\" "
22               "forces OpenGL API. Using \"gles\" forces OpenGL ES API. "
23               "Defaults to empty string, which selects the API native to the "
24               "system.");
25
26 DEFINE_bool2(leaks, l, false, "show leaked ref cnt'd objects.");
27
28 DEFINE_string2(match, m, NULL,
29                "[~][^]substring[$] [...] of GM name to run.\n"
30                "Multiple matches may be separated by spaces.\n"
31                "~ causes a matching GM to always be skipped\n"
32                "^ requires the start of the GM to match\n"
33                "$ requires the end of the GM to match\n"
34                "^ and $ requires an exact match\n"
35                "If a GM does not match any list entry,\n"
36                "it is skipped unless some list entry starts with ~");
37
38 DEFINE_bool2(quiet, q, false, "if true, don't print status updates.");
39
40 DEFINE_bool(resetGpuContext, true, "Reset the GrContext before running each test.");
41 DEFINE_bool(abandonGpuContext, false, "Abandon the GrContext after running each test. "
42                                       "Implies --resetGpuContext.");
43
44 DEFINE_string(skps, "skps", "Directory to read skps from.");
45
46 DEFINE_int32(threads, -1, "Run threadsafe tests on a threadpool with this many extra threads, "
47                           "defaulting to one extra thread per core.");
48
49 DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver.");
50
51 DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
52
53 DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
54
55 DEFINE_string(key, "",
56               "Space-separated key/value pairs to add to JSON identifying this builder.");
57 DEFINE_string(properties, "",
58               "Space-separated key/value pairs to add to JSON identifying this run.");
59