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

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

Issue 2182783004: Add test configs for instanced rendering (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add test configs for instanced rendering Created 4 years, 4 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/dm_flags.py ('k') | tools/flags/SkCommonFlagsConfig.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 2015 Google Inc. 2 * Copyright 2015 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_CONFIG_H 8 #ifndef SK_COMMON_FLAGS_CONFIG_H
9 #define SK_COMMON_FLAGS_CONFIG_H 9 #define SK_COMMON_FLAGS_CONFIG_H
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 #if SK_SUPPORT_GPU 46 #if SK_SUPPORT_GPU
47 // SkCommandLineConfigGpu is a SkCommandLineConfig that extracts information out of the backend 47 // SkCommandLineConfigGpu is a SkCommandLineConfig that extracts information out of the backend
48 // part of the tag. It is constructed tags that have: 48 // part of the tag. It is constructed tags that have:
49 // * backends of form "gpu(option=value,option2=value,...)" 49 // * backends of form "gpu(option=value,option2=value,...)"
50 // * backends that represent a shorthand of above (such as "msaa16" representing "gpu(samples=16)") 50 // * backends that represent a shorthand of above (such as "msaa16" representing "gpu(samples=16)")
51 class SkCommandLineConfigGpu : public SkCommandLineConfig { 51 class SkCommandLineConfigGpu : public SkCommandLineConfig {
52 public: 52 public:
53 typedef sk_gpu_test::GrContextFactory::ContextType ContextType; 53 typedef sk_gpu_test::GrContextFactory::ContextType ContextType;
54 SkCommandLineConfigGpu(const SkString& tag, const SkTArray<SkString>& viaPar ts, 54 SkCommandLineConfigGpu(const SkString& tag, const SkTArray<SkString>& viaPar ts,
55 ContextType contextType, bool useNVPR, bool useDIText , int samples, 55 ContextType contextType, bool useNVPR, bool useInstan ced, bool useDIText,
56 SkColorType colorType, sk_sp<SkColorSpace> colorSpace ); 56 int samples, SkColorType colorType, sk_sp<SkColorSpac e> colorSpace);
57 const SkCommandLineConfigGpu* asConfigGpu() const override { return this; } 57 const SkCommandLineConfigGpu* asConfigGpu() const override { return this; }
58 ContextType getContextType() const { return fContextType; } 58 ContextType getContextType() const { return fContextType; }
59 bool getUseNVPR() const { return fUseNVPR; } 59 bool getUseNVPR() const { return fUseNVPR; }
60 bool getUseInstanced() const { return fUseInstanced; }
60 bool getUseDIText() const { return fUseDIText; } 61 bool getUseDIText() const { return fUseDIText; }
61 int getSamples() const { return fSamples; } 62 int getSamples() const { return fSamples; }
62 SkColorType getColorType() const { return fColorType; } 63 SkColorType getColorType() const { return fColorType; }
63 SkColorSpace* getColorSpace() const { return fColorSpace.get(); } 64 SkColorSpace* getColorSpace() const { return fColorSpace.get(); }
64 65
65 private: 66 private:
66 ContextType fContextType; 67 ContextType fContextType;
67 bool fUseNVPR; 68 bool fUseNVPR;
69 bool fUseInstanced;
68 bool fUseDIText; 70 bool fUseDIText;
69 int fSamples; 71 int fSamples;
70 SkColorType fColorType; 72 SkColorType fColorType;
71 sk_sp<SkColorSpace> fColorSpace; 73 sk_sp<SkColorSpace> fColorSpace;
72 }; 74 };
73 #endif 75 #endif
74 76
75 typedef SkTArray<SkAutoTDelete<SkCommandLineConfig>, true> SkCommandLineConfigAr ray; 77 typedef SkTArray<SkAutoTDelete<SkCommandLineConfig>, true> SkCommandLineConfigAr ray;
76 void ParseConfigs(const SkCommandLineFlags::StringArray& configList, 78 void ParseConfigs(const SkCommandLineFlags::StringArray& configList,
77 SkCommandLineConfigArray* outResult); 79 SkCommandLineConfigArray* outResult);
78 80
79 #endif 81 #endif
OLDNEW
« no previous file with comments | « tools/dm_flags.py ('k') | tools/flags/SkCommonFlagsConfig.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698