| Index: src/effects/SkLumaColorFilter.cpp
|
| diff --git a/src/effects/SkLumaColorFilter.cpp b/src/effects/SkLumaColorFilter.cpp
|
| index 5868f4c7c83b64f3e844fe1d97d877f218ac0dac..8126d560dc1412322b6666ec4f9f0bea5747a13d 100644
|
| --- a/src/effects/SkLumaColorFilter.cpp
|
| +++ b/src/effects/SkLumaColorFilter.cpp
|
| @@ -115,7 +115,8 @@ private:
|
|
|
| virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE {
|
| // The output is always black. The alpha value for the color passed in is arbitrary.
|
| - inout->setToOther(kRGB_GrColorComponentFlags, GrColorPackRGBA(0, 0, 0, 0));
|
| + inout->setToOther(kRGB_GrColorComponentFlags, GrColorPackRGBA(0, 0, 0, 0),
|
| + InvariantOutput::kWill_ReadInput);
|
| }
|
| };
|
|
|
|
|