Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: tests/ImageFilterTest.cpp

Issue 1648933002: Move SkColorMatrixFilter implementation to core. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add back newComposed override Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ports/SkGlobalInitialization_default.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/ports/SkGlobalInitialization_default.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698