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

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

Issue 2221103002: Analytic AntiAlias for Convex Shapes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Declare flag in SkCommonFlags.h for iOS build Created 4 years, 2 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 | « src/core/SkScan_AntiPath.cpp ('k') | tools/flags/SkCommonFlags.cpp » ('j') | 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 #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
(...skipping 14 matching lines...) Expand all
25 DECLARE_bool(abandonGpuContext); 25 DECLARE_bool(abandonGpuContext);
26 DECLARE_bool(releaseAndAbandonGpuContext); 26 DECLARE_bool(releaseAndAbandonGpuContext);
27 DECLARE_string(skps); 27 DECLARE_string(skps);
28 DECLARE_string(svgs); 28 DECLARE_string(svgs);
29 DECLARE_int32(threads); 29 DECLARE_int32(threads);
30 DECLARE_string(resourcePath); 30 DECLARE_string(resourcePath);
31 DECLARE_bool(verbose); 31 DECLARE_bool(verbose);
32 DECLARE_bool(veryVerbose); 32 DECLARE_bool(veryVerbose);
33 DECLARE_string(writePath); 33 DECLARE_string(writePath);
34 DECLARE_bool(pre_log); 34 DECLARE_bool(pre_log);
35 DECLARE_bool(analyticAA);
35 36
36 DECLARE_string(key); 37 DECLARE_string(key);
37 DECLARE_string(properties); 38 DECLARE_string(properties);
38 39
39 /** 40 /**
40 * Helper to assist in collecting image paths from |dir| specified through a co mmand line flag. 41 * Helper to assist in collecting image paths from |dir| specified through a co mmand line flag.
41 * 42 *
42 * Populates |output|, an array of strings with paths to images to test. 43 * Populates |output|, an array of strings with paths to images to test.
43 * 44 *
44 * Returns true if each argument to the images flag is meaningful: 45 * Returns true if each argument to the images flag is meaningful:
45 * - If the file/directory does not exist, return false. 46 * - If the file/directory does not exist, return false.
46 * - If |dir| does not have any supported images (based on file type), return f alse. 47 * - If |dir| does not have any supported images (based on file type), return f alse.
47 * - If |dir| is a single file, assume the user is deliberately testing this im age, 48 * - If |dir| is a single file, assume the user is deliberately testing this im age,
48 * regardless of file type. 49 * regardless of file type.
49 */ 50 */
50 bool CollectImages(SkCommandLineFlags::StringArray dir, SkTArray<SkString>* outp ut); 51 bool CollectImages(SkCommandLineFlags::StringArray dir, SkTArray<SkString>* outp ut);
51 52
52 #endif 53 #endif
OLDNEW
« no previous file with comments | « src/core/SkScan_AntiPath.cpp ('k') | tools/flags/SkCommonFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698