| OLD | NEW |
| 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 GrCoverageSetOpXP_DEFINED | 8 #ifndef GrCoverageSetOpXP_DEFINED |
| 9 #define GrCoverageSetOpXP_DEFINED | 9 #define GrCoverageSetOpXP_DEFINED |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 GrXPFactory::InvariantBlendedColor*) const ove
rride; | 27 GrXPFactory::InvariantBlendedColor*) const ove
rride; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 GrCoverageSetOpXPFactory(SkRegion::Op regionOp, bool invertCoverage); | 30 GrCoverageSetOpXPFactory(SkRegion::Op regionOp, bool invertCoverage); |
| 31 | 31 |
| 32 GrXferProcessor* onCreateXferProcessor(const GrCaps& caps, | 32 GrXferProcessor* onCreateXferProcessor(const GrCaps& caps, |
| 33 const GrPipelineOptimizations& optimi
zations, | 33 const GrPipelineOptimizations& optimi
zations, |
| 34 bool hasMixedSamples, | 34 bool hasMixedSamples, |
| 35 const DstTexture*) const override; | 35 const DstTexture*) const override; |
| 36 | 36 |
| 37 bool willReadDstColor(const GrCaps& /*caps*/, | |
| 38 const GrPipelineOptimizations& /*optimizations*/, | |
| 39 bool /*hasMixedSamples*/) const override { | |
| 40 return false; | |
| 41 } | |
| 42 | |
| 43 bool onIsEqual(const GrXPFactory& xpfBase) const override { | 37 bool onIsEqual(const GrXPFactory& xpfBase) const override { |
| 44 const GrCoverageSetOpXPFactory& xpf = xpfBase.cast<GrCoverageSetOpXPFact
ory>(); | 38 const GrCoverageSetOpXPFactory& xpf = xpfBase.cast<GrCoverageSetOpXPFact
ory>(); |
| 45 return fRegionOp == xpf.fRegionOp; | 39 return fRegionOp == xpf.fRegionOp; |
| 46 } | 40 } |
| 47 | 41 |
| 48 GR_DECLARE_XP_FACTORY_TEST; | 42 GR_DECLARE_XP_FACTORY_TEST; |
| 49 | 43 |
| 50 SkRegion::Op fRegionOp; | 44 SkRegion::Op fRegionOp; |
| 51 bool fInvertCoverage; | 45 bool fInvertCoverage; |
| 52 | 46 |
| 53 typedef GrXPFactory INHERITED; | 47 typedef GrXPFactory INHERITED; |
| 54 }; | 48 }; |
| 55 #endif | 49 #endif |
| 56 | 50 |
| OLD | NEW |