| Index: gm/imagefiltersgraph.cpp
|
| diff --git a/gm/imagefiltersgraph.cpp b/gm/imagefiltersgraph.cpp
|
| index cfedaf0256dd5d552f19cf611e1d5ddb7708146e..521dd3c7ef7de3291de79c9c17b7945700a2863b 100644
|
| --- a/gm/imagefiltersgraph.cpp
|
| +++ b/gm/imagefiltersgraph.cpp
|
| @@ -34,7 +34,7 @@ public:
|
| }
|
| };
|
| static SkImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input) {
|
| - return SkNEW_ARGS(SimpleOffsetFilter, (dx, dy, input));
|
| + return new SimpleOffsetFilter(dx, dy, input);
|
| }
|
|
|
| virtual bool onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx,
|
|
|