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

Side by Side Diff: gm/grayscalejpg.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 | « gm/filterfastbounds.cpp ('k') | gm/image.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 2014 Google Inc. 2 * Copyright 2014 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 "Resources.h" 8 #include "Resources.h"
9 #include "SkImage.h" 9 #include "SkImage.h"
10 #include "gm.h" 10 #include "gm.h"
11 11
12 /* 12 /*
13 * Test decoding grayscale JPEG 13 * Test decoding grayscale JPEG
14 * http://crbug.com/436079 14 * http://crbug.com/436079
15 */ 15 */
16 DEF_SIMPLE_GM(grayscalejpg, canvas, 128, 128) { 16 DEF_SIMPLE_GM(grayscalejpg, canvas, 128, 128) {
17 const char kResource[] = "grayscale.jpg"; 17 const char kResource[] = "grayscale.jpg";
18 SkAutoTUnref<SkImage> image(GetResourceAsImage(kResource)); 18 sk_sp<SkImage> image(GetResourceAsImage(kResource));
19 if (image) { 19 if (image) {
20 canvas->drawImage(image, 0.0f, 0.0f); 20 canvas->drawImage(image, 0.0f, 0.0f);
21 } else { 21 } else {
22 SkDebugf("\nCould not decode file '%s'. Did you forget" 22 SkDebugf("\nCould not decode file '%s'. Did you forget"
23 " to set the resourcePath?\n", kResource); 23 " to set the resourcePath?\n", kResource);
24 } 24 }
25 } 25 }
OLDNEW
« no previous file with comments | « gm/filterfastbounds.cpp ('k') | gm/image.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698