| Index: tests/ImageFilterTest.cpp
|
| diff --git a/tests/ImageFilterTest.cpp b/tests/ImageFilterTest.cpp
|
| index b1d087825b1aa5f3d98eb584ee3c10e0fafd481c..8b6e4285caa61f4f7b67e4e58fd09c260a678284 100644
|
| --- a/tests/ImageFilterTest.cpp
|
| +++ b/tests/ImageFilterTest.cpp
|
| @@ -1000,13 +1000,10 @@
|
| }
|
|
|
| #if SK_SUPPORT_GPU
|
| -const SkSurfaceProps gProps = SkSurfaceProps(SkSurfaceProps::kLegacyFontHost_InitType);
|
| -
|
| DEF_GPUTEST(ImageFilterCropRectGPU, reporter, factory) {
|
| GrContext* context = factory->get(static_cast<GrContextFactory::GLContextType>(0));
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| SkImageInfo::MakeN32Premul(100, 100),
|
| - gProps,
|
| 0));
|
| test_crop_rects(device, reporter);
|
| }
|
| @@ -1015,7 +1012,6 @@
|
| GrContext* context = factory->get(static_cast<GrContextFactory::GLContextType>(0));
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| SkImageInfo::MakeN32Premul(100, 100),
|
| - gProps,
|
| 0));
|
| test_huge_blur(device, reporter);
|
| }
|
| @@ -1024,7 +1020,6 @@
|
| GrContext* context = factory->get(static_cast<GrContextFactory::GLContextType>(0));
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| SkImageInfo::MakeN32Premul(1, 1),
|
| - gProps,
|
| 0));
|
| test_xfermode_cropped_input(device, reporter);
|
| }
|
| @@ -1033,7 +1028,6 @@
|
| GrContext* context = factory->get(static_cast<GrContextFactory::GLContextType>(0));
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| SkImageInfo::MakeN32Premul(1, 1),
|
| - gProps,
|
| 0));
|
| test_negative_blur_sigma(device, reporter);
|
| }
|
|
|