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 #ifndef SK_COMMON_FLAGS_H | 8 #ifndef SK_COMMON_FLAGS_H |
9 #define SK_COMMON_FLAGS_H | 9 #define SK_COMMON_FLAGS_H |
10 | 10 |
11 #include "../private/SkTArray.h" | 11 #include "../private/SkTArray.h" |
12 #include "SkCommandLineFlags.h" | 12 #include "SkCommandLineFlags.h" |
13 #include "SkString.h" | 13 #include "SkString.h" |
14 | 14 |
15 DECLARE_bool(cpu); | 15 DECLARE_bool(cpu); |
16 DECLARE_bool(dryRun); | 16 DECLARE_bool(dryRun); |
17 DECLARE_bool(gpu); | 17 DECLARE_bool(gpu); |
18 DECLARE_string(images); | 18 DECLARE_string(images); |
| 19 DECLARE_string(colorImages); |
19 DECLARE_string(match); | 20 DECLARE_string(match); |
20 DECLARE_bool(quiet); | 21 DECLARE_bool(quiet); |
21 DECLARE_bool(resetGpuContext); | 22 DECLARE_bool(resetGpuContext); |
22 DECLARE_bool(preAbandonGpuContext); | 23 DECLARE_bool(preAbandonGpuContext); |
23 DECLARE_bool(abandonGpuContext); | 24 DECLARE_bool(abandonGpuContext); |
24 DECLARE_bool(releaseAndAbandonGpuContext); | 25 DECLARE_bool(releaseAndAbandonGpuContext); |
25 DECLARE_string(skps); | 26 DECLARE_string(skps); |
26 DECLARE_int32(threads); | 27 DECLARE_int32(threads); |
27 DECLARE_string(resourcePath); | 28 DECLARE_string(resourcePath); |
28 DECLARE_bool(verbose); | 29 DECLARE_bool(verbose); |
29 DECLARE_bool(veryVerbose); | 30 DECLARE_bool(veryVerbose); |
30 DECLARE_string(writePath); | 31 DECLARE_string(writePath); |
31 DECLARE_bool(pre_log); | 32 DECLARE_bool(pre_log); |
32 | 33 |
33 DECLARE_string(key); | 34 DECLARE_string(key); |
34 DECLARE_string(properties); | 35 DECLARE_string(properties); |
35 | 36 |
36 /** | 37 /** |
37 * Helper to assist in collecting image paths from --images. | 38 * Helper to assist in collecting image paths from |dir| specified through a co
mmand line flag. |
38 * | 39 * |
39 * Populates an array of strings with paths to images to test. | 40 * Populates |output|, an array of strings with paths to images to test. |
40 * | 41 * |
41 * Returns true if each argument to --images is meaningful: | 42 * Returns true if each argument to the images flag is meaningful: |
42 * - If the file/directory does not exist, return false. | 43 * - If the file/directory does not exist, return false. |
43 * - If a directory passed to --images does not have any supported images (base
d on file | 44 * - If |dir| does not have any supported images (based on file type), return f
alse. |
44 * type), return false. | 45 * - If |dir| is a single file, assume the user is deliberately testing this im
age, |
45 * - If a file is passed to --images, assume the user is deliberately testing t
his image, | 46 * regardless of file type. |
46 * regardless of file type. | |
47 */ | 47 */ |
48 bool CollectImages(SkTArray<SkString>*); | 48 bool CollectImages(SkCommandLineFlags::StringArray dir, SkTArray<SkString>* outp
ut); |
49 | 49 |
50 #endif | 50 #endif |
OLD | NEW |