OLD | NEW |
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 useDIText
, int samples, |
56 SkColorType colorType, sk_sp<SkColorSpace> colorSpace
); | 56 SkColorType colorType, SkColorProfileType profileType
); |
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 getUseDIText() const { return fUseDIText; } | 60 bool getUseDIText() const { return fUseDIText; } |
61 int getSamples() const { return fSamples; } | 61 int getSamples() const { return fSamples; } |
62 SkColorType getColorType() const { return fColorType; } | 62 SkColorType getColorType() const { return fColorType; } |
63 SkColorSpace* getColorSpace() const { return fColorSpace.get(); } | 63 SkColorProfileType getProfileType() const { return fProfileType; } |
64 | 64 |
65 private: | 65 private: |
66 ContextType fContextType; | 66 ContextType fContextType; |
67 bool fUseNVPR; | 67 bool fUseNVPR; |
68 bool fUseDIText; | 68 bool fUseDIText; |
69 int fSamples; | 69 int fSamples; |
70 SkColorType fColorType; | 70 SkColorType fColorType; |
71 sk_sp<SkColorSpace> fColorSpace; | 71 SkColorProfileType fProfileType; |
72 }; | 72 }; |
73 #endif | 73 #endif |
74 | 74 |
75 typedef SkTArray<SkAutoTDelete<SkCommandLineConfig>, true> SkCommandLineConfigAr
ray; | 75 typedef SkTArray<SkAutoTDelete<SkCommandLineConfig>, true> SkCommandLineConfigAr
ray; |
76 void ParseConfigs(const SkCommandLineFlags::StringArray& configList, | 76 void ParseConfigs(const SkCommandLineFlags::StringArray& configList, |
77 SkCommandLineConfigArray* outResult); | 77 SkCommandLineConfigArray* outResult); |
78 | 78 |
79 #endif | 79 #endif |
OLD | NEW |