OLD | NEW |
| 1 |
1 /* | 2 /* |
2 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
3 * | 4 * |
4 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 6 * found in the LICENSE file. |
6 */ | 7 */ |
7 | 8 |
8 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
9 #include "SkBitmapDevice.h" | 10 #include "SkBitmapDevice.h" |
10 #include "SkBlurImageFilter.h" | 11 #include "SkBlurImageFilter.h" |
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1366 test_negative_blur_sigma(&proxy, reporter); | 1367 test_negative_blur_sigma(&proxy, reporter); |
1367 } | 1368 } |
1368 | 1369 |
1369 DEF_GPUTEST_FOR_ALL_CONTEXTS(BlurLargeImage_Gpu, reporter, context) { | 1370 DEF_GPUTEST_FOR_ALL_CONTEXTS(BlurLargeImage_Gpu, reporter, context) { |
1370 SkAutoTUnref<SkSurface> surface( | 1371 SkAutoTUnref<SkSurface> surface( |
1371 SkSurface::NewRenderTarget(context, SkSurface::kYes_Budgeted, | 1372 SkSurface::NewRenderTarget(context, SkSurface::kYes_Budgeted, |
1372 SkImageInfo::MakeN32Premul(100, 100))); | 1373 SkImageInfo::MakeN32Premul(100, 100))); |
1373 test_large_blur_input(reporter, surface->getCanvas()); | 1374 test_large_blur_input(reporter, surface->getCanvas()); |
1374 } | 1375 } |
1375 #endif | 1376 #endif |
OLD | NEW |