| 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 GrCustomXfermodePriv_DEFINED | 8 #ifndef GrCustomXfermodePriv_DEFINED |
| 9 #define GrCustomXfermodePriv_DEFINED | 9 #define GrCustomXfermodePriv_DEFINED |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 GrXPFactory::InvariantOutput*) const override; | 68 GrXPFactory::InvariantOutput*) const override; |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 GrXferProcessor* onCreateXferProcessor(const GrDrawTargetCaps& caps, | 71 GrXferProcessor* onCreateXferProcessor(const GrDrawTargetCaps& caps, |
| 72 const GrProcOptInfo& colorPOI, | 72 const GrProcOptInfo& colorPOI, |
| 73 const GrProcOptInfo& coveragePOI, | 73 const GrProcOptInfo& coveragePOI, |
| 74 const GrDeviceCoordTexture* dstCopy)
const override; | 74 const GrDeviceCoordTexture* dstCopy)
const override; |
| 75 | 75 |
| 76 bool willReadDstColor(const GrDrawTargetCaps& caps, | 76 bool willReadDstColor(const GrDrawTargetCaps& caps, |
| 77 const GrProcOptInfo& colorPOI, | 77 const GrProcOptInfo& colorPOI, |
| 78 const GrProcOptInfo& coveragePOI) const override { | 78 const GrProcOptInfo& coveragePOI) const override; |
| 79 return true; | |
| 80 } | |
| 81 | 79 |
| 82 bool onIsEqual(const GrXPFactory& xpfBase) const override { | 80 bool onIsEqual(const GrXPFactory& xpfBase) const override { |
| 83 const GrCustomXPFactory& xpf = xpfBase.cast<GrCustomXPFactory>(); | 81 const GrCustomXPFactory& xpf = xpfBase.cast<GrCustomXPFactory>(); |
| 84 return fMode == xpf.fMode; | 82 return fMode == xpf.fMode; |
| 85 } | 83 } |
| 86 | 84 |
| 87 GR_DECLARE_XP_FACTORY_TEST; | 85 GR_DECLARE_XP_FACTORY_TEST; |
| 88 | 86 |
| 89 SkXfermode::Mode fMode; | 87 SkXfermode::Mode fMode; |
| 90 | 88 |
| 91 typedef GrXPFactory INHERITED; | 89 typedef GrXPFactory INHERITED; |
| 92 }; | 90 }; |
| 93 #endif | 91 #endif |
| 94 | 92 |
| OLD | NEW |