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

Side by Side Diff: tests/FlattenableFactoryToName.cpp

Issue 1810813003: update callsites for Make image factories (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: start to take advantage of sk_sp drawImage Created 4 years, 9 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 | « tests/CachedDecodingPixelRefTest.cpp ('k') | tests/ImageFilterCacheTest.cpp » ('j') | 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 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkAlphaThresholdFilter.h" 8 #include "SkAlphaThresholdFilter.h"
9 #include "SkImage.h" 9 #include "SkImage.h"
10 #include "Test.h" 10 #include "Test.h"
(...skipping 17 matching lines...) Expand all
28 rects[0] = SkIRect::MakeXYWH(0, 150, 500, 200); 28 rects[0] = SkIRect::MakeXYWH(0, 150, 500, 200);
29 rects[1] = SkIRect::MakeXYWH(150, 0, 200, 500); 29 rects[1] = SkIRect::MakeXYWH(150, 0, 200, 500);
30 SkRegion region; 30 SkRegion region;
31 region.setRects(rects, 2); 31 region.setRects(rects, 2);
32 SkAutoTUnref<SkImageFilter> filter( SkAlphaThresholdFilter::Create(region, 0 .2f, 0.7f)); 32 SkAutoTUnref<SkImageFilter> filter( SkAlphaThresholdFilter::Create(region, 0 .2f, 0.7f));
33 test_flattenable(r, filter, "SkAlphaThresholdFilter()"); 33 test_flattenable(r, filter, "SkAlphaThresholdFilter()");
34 34
35 SkBitmap bm; 35 SkBitmap bm;
36 bm.allocN32Pixels(8, 8); 36 bm.allocN32Pixels(8, 8);
37 bm.eraseColor(SK_ColorCYAN); 37 bm.eraseColor(SK_ColorCYAN);
38 SkAutoTUnref<SkImage> image(SkImage::NewFromBitmap(bm)); 38 sk_sp<SkImage> image(SkImage::MakeFromBitmap(bm));
39 auto shader = image->makeShader(SkShader::kClamp_TileMode, SkShader::kClamp_ TileMode); 39 auto shader = image->makeShader(SkShader::kClamp_TileMode, SkShader::kClamp_ TileMode);
40 test_flattenable(r, shader.get(), "SkImage::newShader()"); 40 test_flattenable(r, shader.get(), "SkImage::newShader()");
41 } 41 }
OLDNEW
« no previous file with comments | « tests/CachedDecodingPixelRefTest.cpp ('k') | tests/ImageFilterCacheTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698