| Index: tests/ImageNewShaderTest.cpp
|
| diff --git a/tests/ImageNewShaderTest.cpp b/tests/ImageNewShaderTest.cpp
|
| index 1bc77fba66ad9c7a0b864f724486158014dd720b..c78b7157a2bc457e4477203acfa8eaabc7ba1c98 100644
|
| --- a/tests/ImageNewShaderTest.cpp
|
| +++ b/tests/ImageNewShaderTest.cpp
|
| @@ -115,8 +115,10 @@ DEF_TEST(ImageNewShader, reporter) {
|
| void gpuToGpu(skiatest::Reporter* reporter, GrContext* context) {
|
| SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5);
|
|
|
| - SkAutoTUnref<SkSurface> sourceSurface(SkSurface::NewRenderTarget(context, info));
|
| - SkAutoTUnref<SkSurface> destinationSurface(SkSurface::NewRenderTarget(context, info));
|
| + SkAutoTUnref<SkSurface> sourceSurface(
|
| + SkSurface::NewRenderTarget(context, SkSurface::kNo_Budgeted, info));
|
| + SkAutoTUnref<SkSurface> destinationSurface(
|
| + SkSurface::NewRenderTarget(context, SkSurface::kNo_Budgeted, info));
|
|
|
| runShaderTest(reporter, sourceSurface.get(), destinationSurface.get(), info);
|
| }
|
| @@ -124,7 +126,8 @@ void gpuToGpu(skiatest::Reporter* reporter, GrContext* context) {
|
| void gpuToRaster(skiatest::Reporter* reporter, GrContext* context) {
|
| SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5);
|
|
|
| - SkAutoTUnref<SkSurface> sourceSurface(SkSurface::NewRenderTarget(context, info));
|
| + SkAutoTUnref<SkSurface> sourceSurface(SkSurface::NewRenderTarget(context,
|
| + SkSurface::kNo_Budgeted, info));
|
| SkAutoTUnref<SkSurface> destinationSurface(SkSurface::NewRaster(info));
|
|
|
| runShaderTest(reporter, sourceSurface.get(), destinationSurface.get(), info);
|
| @@ -134,7 +137,8 @@ void rasterToGpu(skiatest::Reporter* reporter, GrContext* context) {
|
| SkImageInfo info = SkImageInfo::MakeN32Premul(5, 5);
|
|
|
| SkAutoTUnref<SkSurface> sourceSurface(SkSurface::NewRaster(info));
|
| - SkAutoTUnref<SkSurface> destinationSurface(SkSurface::NewRenderTarget(context, info));
|
| + SkAutoTUnref<SkSurface> destinationSurface(SkSurface::NewRenderTarget(context,
|
| + SkSurface::kNo_Budgeted, info));
|
|
|
| runShaderTest(reporter, sourceSurface.get(), destinationSurface.get(), info);
|
| }
|
|
|