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

Side by Side Diff: tests/SkImageTest.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/SkColor4fTest.cpp ('k') | tests/SkResourceCacheTest.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 "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkImagePriv.h" 9 #include "SkImagePriv.h"
10 #include "Test.h" 10 #include "Test.h"
11 11
12 static const int gWidth = 20; 12 static const int gWidth = 20;
13 static const int gHeight = 20; 13 static const int gHeight = 20;
14 14
15 // Tests that SkNewImageFromBitmap obeys pixelref origin. 15 // Tests that SkNewImageFromBitmap obeys pixelref origin.
16 DEF_TEST(SkImageFromBitmap_extractSubset, reporter) { 16 DEF_TEST(SkImageFromBitmap_extractSubset, reporter) {
17 SkAutoTUnref<SkImage> image; 17 sk_sp<SkImage> image;
18 { 18 {
19 SkBitmap srcBitmap; 19 SkBitmap srcBitmap;
20 srcBitmap.allocN32Pixels(gWidth, gHeight); 20 srcBitmap.allocN32Pixels(gWidth, gHeight);
21 srcBitmap.eraseColor(SK_ColorRED); 21 srcBitmap.eraseColor(SK_ColorRED);
22 SkCanvas canvas(srcBitmap); 22 SkCanvas canvas(srcBitmap);
23 SkIRect r = SkIRect::MakeXYWH(5, 5, gWidth - 5, gWidth - 5); 23 SkIRect r = SkIRect::MakeXYWH(5, 5, gWidth - 5, gWidth - 5);
24 SkPaint p; 24 SkPaint p;
25 p.setColor(SK_ColorGREEN); 25 p.setColor(SK_ColorGREEN);
26 canvas.drawIRect(r, p); 26 canvas.drawIRect(r, p);
27 SkBitmap dstBitmap; 27 SkBitmap dstBitmap;
28 srcBitmap.extractSubset(&dstBitmap, r); 28 srcBitmap.extractSubset(&dstBitmap, r);
29 image.reset(SkImage::NewFromBitmap(dstBitmap)); 29 image = SkImage::MakeFromBitmap(dstBitmap);
30 } 30 }
31 31
32 SkBitmap tgt; 32 SkBitmap tgt;
33 tgt.allocN32Pixels(gWidth, gHeight); 33 tgt.allocN32Pixels(gWidth, gHeight);
34 SkCanvas canvas(tgt); 34 SkCanvas canvas(tgt);
35 canvas.clear(SK_ColorTRANSPARENT); 35 canvas.clear(SK_ColorTRANSPARENT);
36 canvas.drawImage(image, 0, 0, nullptr); 36 canvas.drawImage(image, 0, 0, nullptr);
37 37
38 uint32_t pixel = 0; 38 uint32_t pixel = 0;
39 SkImageInfo info = SkImageInfo::Make(1, 1, kBGRA_8888_SkColorType, kUnpremul _SkAlphaType); 39 SkImageInfo info = SkImageInfo::Make(1, 1, kBGRA_8888_SkColorType, kUnpremul _SkAlphaType);
40 canvas.readPixels(info, &pixel, 4, 0, 0); 40 canvas.readPixels(info, &pixel, 4, 0, 0);
41 REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN); 41 REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN);
42 canvas.readPixels(info, &pixel, 4, gWidth - 6, gWidth - 6); 42 canvas.readPixels(info, &pixel, 4, gWidth - 6, gWidth - 6);
43 REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN); 43 REPORTER_ASSERT(reporter, pixel == SK_ColorGREEN);
44 44
45 canvas.readPixels(info, &pixel, 4, gWidth - 5, gWidth - 5); 45 canvas.readPixels(info, &pixel, 4, gWidth - 5, gWidth - 5);
46 REPORTER_ASSERT(reporter, pixel == SK_ColorTRANSPARENT); 46 REPORTER_ASSERT(reporter, pixel == SK_ColorTRANSPARENT);
47 } 47 }
OLDNEW
« no previous file with comments | « tests/SkColor4fTest.cpp ('k') | tests/SkResourceCacheTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698