| Index: tests/ImageFilterTest.cpp
|
| diff --git a/tests/ImageFilterTest.cpp b/tests/ImageFilterTest.cpp
|
| index 0076ac56fbf050d6c5b1ab868bc767ec9547f858..fc709da5afb5c5b2c92eb95755504974d232a0ef 100644
|
| --- a/tests/ImageFilterTest.cpp
|
| +++ b/tests/ImageFilterTest.cpp
|
| @@ -13,7 +13,6 @@
|
| #include "SkColorFilterImageFilter.h"
|
| #include "SkColorMatrixFilter.h"
|
| #include "SkComposeImageFilter.h"
|
| -#include "SkDeviceImageFilterProxy.h"
|
| #include "SkDisplacementMapEffect.h"
|
| #include "SkDropShadowImageFilter.h"
|
| #include "SkFlattenableSerialization.h"
|
| @@ -272,7 +271,7 @@ static void test_crop_rects(SkBaseDevice* device, skiatest::Reporter* reporter)
|
| SkBitmap bitmap;
|
| bitmap.allocN32Pixels(100, 100);
|
| bitmap.eraseARGB(0, 0, 0, 0);
|
| - SkDeviceImageFilterProxy proxy(device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
| + SkImageFilter::Proxy proxy(device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
|
|
| SkImageFilter::CropRect inputCropRect(SkRect::MakeXYWH(8, 13, 80, 80));
|
| SkImageFilter::CropRect cropRect(SkRect::MakeXYWH(20, 30, 60, 60));
|
| @@ -352,7 +351,7 @@ static void test_negative_blur_sigma(SkBaseDevice* device, skiatest::Reporter* r
|
| // Check that SkBlurImageFilter will accept a negative sigma, either in
|
| // the given arguments or after CTM application.
|
| int width = 32, height = 32;
|
| - SkDeviceImageFilterProxy proxy(device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
| + SkImageFilter::Proxy proxy(device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
| SkScalar five = SkIntToScalar(5);
|
|
|
| SkAutoTUnref<SkBlurImageFilter> positiveFilter(
|
| @@ -888,7 +887,7 @@ DEF_TEST(ImageFilterClippedPictureImageFilter, reporter) {
|
| SkBitmap bitmap;
|
| bitmap.allocN32Pixels(2, 2);
|
| SkBitmapDevice device(bitmap);
|
| - SkDeviceImageFilterProxy proxy(&device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
| + SkImageFilter::Proxy proxy(&device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
| REPORTER_ASSERT(reporter, !imageFilter->filterImage(&proxy, bitmap, ctx, &result, &offset));
|
| }
|
|
|
| @@ -1131,7 +1130,7 @@ DEF_TEST(ComposedImageFilterOffset, reporter) {
|
| bitmap.allocN32Pixels(100, 100);
|
| bitmap.eraseARGB(0, 0, 0, 0);
|
| SkBitmapDevice device(bitmap);
|
| - SkDeviceImageFilterProxy proxy(&device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
| + SkImageFilter::Proxy proxy(&device, SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType));
|
|
|
| SkImageFilter::CropRect cropRect(SkRect::MakeXYWH(1, 0, 20, 20));
|
| SkAutoTUnref<SkImageFilter> offsetFilter(SkOffsetImageFilter::Create(0, 0, NULL, &cropRect));
|
|
|