| Index: src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| diff --git a/src/gpu/batches/GrTessellatingPathRenderer.cpp b/src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| index 901d38369cfe072496a306b063544a8846a98b39..02ec0590c35a35cdef45b31c68abdac15b13cccd 100644
|
| --- a/src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| +++ b/src/gpu/batches/GrTessellatingPathRenderer.cpp
|
| @@ -1397,12 +1397,11 @@ public:
|
|
|
| const char* name() const override { return "TessellatingPathBatch"; }
|
|
|
| - void getInvariantOutputColor(GrInitInvariantOutput* out) const override {
|
| - out->setKnownFourComponents(fColor);
|
| - }
|
| -
|
| - void getInvariantOutputCoverage(GrInitInvariantOutput* out) const override {
|
| - out->setUnknownSingleComponent();
|
| + void computeBatchToXPOverrides(GrInitInvariantOutput* color, GrInitInvariantOutput* coverage,
|
| + bool* usePLSDstRead) const {
|
| + color->setKnownFourComponents(fColor);
|
| + coverage->setUnknownSingleComponent();
|
| + *usePLSDstRead = false;
|
| }
|
|
|
| private:
|
|
|