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

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

Issue 1755553003: Revert of Progress on gamma-correctness in the GPU backend. Fixed conversion of color and profile type to pix… (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 | « tests/TestConfigParsing.cpp ('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 GrContextFactory::GLContextType ContextType; 53 typedef GrContextFactory::GLContextType 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, SkColorProfileType profileType );
57 const SkCommandLineConfigGpu* asConfigGpu() const override { return this; } 56 const SkCommandLineConfigGpu* asConfigGpu() const override { return this; }
58 ContextType getContextType() const { return fContextType; } 57 ContextType getContextType() const { return fContextType; }
59 bool getUseNVPR() const { return fUseNVPR; } 58 bool getUseNVPR() const { return fUseNVPR; }
60 bool getUseDIText() const { return fUseDIText; } 59 bool getUseDIText() const { return fUseDIText; }
61 int getSamples() const { return fSamples; } 60 int getSamples() const { return fSamples; }
62 SkColorType getColorType() const { return fColorType; }
63 SkColorProfileType getProfileType() const { return fProfileType; }
64 61
65 private: 62 private:
66 ContextType fContextType; 63 ContextType fContextType;
67 bool fUseNVPR; 64 bool fUseNVPR;
68 bool fUseDIText; 65 bool fUseDIText;
69 int fSamples; 66 int fSamples;
70 SkColorType fColorType;
71 SkColorProfileType fProfileType;
72 }; 67 };
73 #endif 68 #endif
74 69
75 typedef SkTArray<SkAutoTDelete<SkCommandLineConfig>, true> SkCommandLineConfigAr ray; 70 typedef SkTArray<SkAutoTDelete<SkCommandLineConfig>, true> SkCommandLineConfigAr ray;
76 void ParseConfigs(const SkCommandLineFlags::StringArray& configList, 71 void ParseConfigs(const SkCommandLineFlags::StringArray& configList,
77 SkCommandLineConfigArray* outResult); 72 SkCommandLineConfigArray* outResult);
78 73
79 #endif 74 #endif
OLDNEW
« no previous file with comments | « tests/TestConfigParsing.cpp ('k') | tools/flags/SkCommonFlagsConfig.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698