| Index: gm/matriximagefilter.cpp
|
| diff --git a/gm/matriximagefilter.cpp b/gm/matriximagefilter.cpp
|
| index eef2b451fccff197efe2a086f91685ce2383c977..a42870b617ea7110b292b40330755022a718f7bd 100644
|
| --- a/gm/matriximagefilter.cpp
|
| +++ b/gm/matriximagefilter.cpp
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "gm.h"
|
| #include "SkColor.h"
|
| -#include "SkMatrixImageFilter.h"
|
| +#include "SkImageFilter.h"
|
|
|
| namespace skiagm {
|
|
|
| @@ -25,7 +25,7 @@ protected:
|
| void draw(SkCanvas* canvas, const SkRect& rect, const SkBitmap& bitmap,
|
| const SkMatrix& matrix, SkFilterQuality filter) {
|
| SkAutoTUnref<SkImageFilter> imageFilter(
|
| - SkMatrixImageFilter::Create(matrix, filter));
|
| + SkImageFilter::CreateMatrixFilter(matrix, filter));
|
| SkPaint paint;
|
| paint.setImageFilter(imageFilter.get());
|
| canvas->saveLayer(&rect, &paint);
|
|
|