| Index: tests/ImageFilterTest.cpp
|
| diff --git a/tests/ImageFilterTest.cpp b/tests/ImageFilterTest.cpp
|
| index 89c069cf86c4accc3af8a4bd76670bd01ec92ca3..60480ec629cd00963bb6bd391ca91bca2ae233a9 100644
|
| --- a/tests/ImageFilterTest.cpp
|
| +++ b/tests/ImageFilterTest.cpp
|
| @@ -1329,7 +1329,7 @@
|
| const SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
|
|
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| - SkBudgeted::kNo,
|
| + SkSurface::kNo_Budgeted,
|
| SkImageInfo::MakeN32Premul(100, 100),
|
| 0,
|
| &props,
|
| @@ -1343,7 +1343,7 @@
|
| const SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
|
|
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| - SkBudgeted::kNo,
|
| + SkSurface::kNo_Budgeted,
|
| SkImageInfo::MakeN32Premul(100, 100),
|
| 0,
|
| &props,
|
| @@ -1357,7 +1357,7 @@
|
| const SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
|
|
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| - SkBudgeted::kNo,
|
| + SkSurface::kNo_Budgeted,
|
| SkImageInfo::MakeN32Premul(1, 1),
|
| 0,
|
| &props,
|
| @@ -1371,7 +1371,7 @@
|
| const SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
|
|
|
| SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(context,
|
| - SkBudgeted::kNo,
|
| + SkSurface::kNo_Budgeted,
|
| SkImageInfo::MakeN32Premul(1, 1),
|
| 0,
|
| &props,
|
| @@ -1383,7 +1383,7 @@
|
|
|
| DEF_GPUTEST_FOR_ALL_CONTEXTS(BlurLargeImage_Gpu, reporter, context) {
|
| SkAutoTUnref<SkSurface> surface(
|
| - SkSurface::NewRenderTarget(context, SkBudgeted::kYes,
|
| + SkSurface::NewRenderTarget(context, SkSurface::kYes_Budgeted,
|
| SkImageInfo::MakeN32Premul(100, 100)));
|
| test_large_blur_input(reporter, surface->getCanvas());
|
| }
|
|
|