| Index: src/gpu/effects/Gr1DKernelEffect.h
|
| diff --git a/src/gpu/effects/Gr1DKernelEffect.h b/src/gpu/effects/Gr1DKernelEffect.h
|
| index 3ceb75d4b6482a41f56cb71641102b6ce29e4706..519d6dbeb5663c653583b567fdab387a9a4f81f6 100644
|
| --- a/src/gpu/effects/Gr1DKernelEffect.h
|
| +++ b/src/gpu/effects/Gr1DKernelEffect.h
|
| @@ -43,6 +43,13 @@ public:
|
| int width() const { return WidthFromRadius(fRadius); }
|
| Direction direction() const { return fDirection; }
|
|
|
| + SkString dumpInfo() const override {
|
| + SkString str;
|
| + str.appendf("Direction: %s, Radius: %d ", kX_Direction == fDirection ? "X" : "Y", fRadius);
|
| + str.append(INHERITED::dumpInfo());
|
| + return str;
|
| + }
|
| +
|
| private:
|
|
|
| Direction fDirection;
|
|
|