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

Side by Side Diff: src/gpu/effects/GrDisableColorXP.h

Issue 1127693002: Remove canTweakAlphaForCoverage from XP's since batch reads flag. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 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/gpu/effects/GrCustomXfermodePriv.h ('k') | src/gpu/effects/GrPorterDuffXferProcessor.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 GrDisableColorXP_DEFINED 8 #ifndef GrDisableColorXP_DEFINED
9 #define GrDisableColorXP_DEFINED 9 #define GrDisableColorXP_DEFINED
10 10
11 #include "GrTypes.h" 11 #include "GrTypes.h"
12 #include "GrXferProcessor.h" 12 #include "GrXferProcessor.h"
13 13
14 class GrProcOptInfo; 14 class GrProcOptInfo;
15 15
16 class GrDisableColorXPFactory : public GrXPFactory { 16 class GrDisableColorXPFactory : public GrXPFactory {
17 public: 17 public:
18 static GrXPFactory* Create() { 18 static GrXPFactory* Create() {
19 return SkNEW(GrDisableColorXPFactory); 19 return SkNEW(GrDisableColorXPFactory);
20 } 20 }
21 21
22 bool supportsRGBCoverage(GrColor knownColor, uint32_t knownColorFlags) const override { 22 bool supportsRGBCoverage(GrColor knownColor, uint32_t knownColorFlags) const override {
23 return true; 23 return true;
24 } 24 }
25 25
26 bool canTweakAlphaForCoverage() const override { return true; }
27
28 void getInvariantOutput(const GrProcOptInfo& colorPOI, const GrProcOptInfo& coveragePOI, 26 void getInvariantOutput(const GrProcOptInfo& colorPOI, const GrProcOptInfo& coveragePOI,
29 GrXPFactory::InvariantOutput* output) const override { 27 GrXPFactory::InvariantOutput* output) const override {
30 output->fBlendedColorFlags = 0; 28 output->fBlendedColorFlags = 0;
31 output->fWillBlendWithDst = 0; 29 output->fWillBlendWithDst = 0;
32 } 30 }
33 31
34 private: 32 private:
35 GrDisableColorXPFactory(); 33 GrDisableColorXPFactory();
36 34
37 GrXferProcessor* onCreateXferProcessor(const GrDrawTargetCaps& caps, 35 GrXferProcessor* onCreateXferProcessor(const GrDrawTargetCaps& caps,
(...skipping 11 matching lines...) Expand all
49 return true; 47 return true;
50 } 48 }
51 49
52 GR_DECLARE_XP_FACTORY_TEST; 50 GR_DECLARE_XP_FACTORY_TEST;
53 51
54 typedef GrXPFactory INHERITED; 52 typedef GrXPFactory INHERITED;
55 }; 53 };
56 54
57 #endif 55 #endif
58 56
OLDNEW
« no previous file with comments | « src/gpu/effects/GrCustomXfermodePriv.h ('k') | src/gpu/effects/GrPorterDuffXferProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698