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

Side by Side Diff: gm/verylargebitmap.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/tileimagefilter.cpp ('k') | gm/xfermodeimagefilter.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 2012 Google Inc. 2 * Copyright 2012 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 "gm.h" 8 #include "gm.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkGradientShader.h" 10 #include "SkGradientShader.h"
11 #include "SkPath.h" 11 #include "SkPath.h"
12 #include "SkPictureRecorder.h" 12 #include "SkPictureRecorder.h"
13 #include "SkSurface.h" 13 #include "SkSurface.h"
14 14
15 static void draw(SkCanvas* canvas, int width, int height, SkColor colors[2]) { 15 static void draw(SkCanvas* canvas, int width, int height, SkColor colors[2]) {
16 const SkPoint center = { SkIntToScalar(width)/2, SkIntToScalar(height)/2 }; 16 const SkPoint center = { SkIntToScalar(width)/2, SkIntToScalar(height)/2 };
17 const SkScalar radius = 40; 17 const SkScalar radius = 40;
18 SkPaint paint; 18 SkPaint paint;
19 paint.setShader(SkGradientShader::MakeRadial(center, radius, colors, nullptr , 2, 19 paint.setShader(SkGradientShader::MakeRadial(center, radius, colors, nullptr , 2,
20 SkShader::kMirror_TileMode)); 20 SkShader::kMirror_TileMode));
21 paint.setXfermodeMode(SkXfermode::kSrc_Mode); 21 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
22 canvas->drawPaint(paint); 22 canvas->drawPaint(paint);
23 } 23 }
24 24
25 static SkImage* make_raster_image(int width, int height, SkColor colors[2]) { 25 static sk_sp<SkImage> make_raster_image(int width, int height, SkColor colors[2] ) {
26 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(width, height) ); 26 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(width, height) );
27 draw(surface->getCanvas(), width, height, colors); 27 draw(surface->getCanvas(), width, height, colors);
28 return surface->newImageSnapshot(); 28 return surface->makeImageSnapshot();
29 } 29 }
30 30
31 static SkImage* make_picture_image(int width, int height, SkColor colors[2]) { 31 static sk_sp<SkImage> make_picture_image(int width, int height, SkColor colors[2 ]) {
32 SkPictureRecorder recorder; 32 SkPictureRecorder recorder;
33 draw(recorder.beginRecording(SkRect::MakeIWH(width, height)), width, height, colors); 33 draw(recorder.beginRecording(SkRect::MakeIWH(width, height)), width, height, colors);
34 SkAutoTUnref<SkPicture> picture(recorder.endRecording()); 34 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
35 return SkImage::NewFromPicture(picture, SkISize::Make(width, height), 35 return SkImage::MakeFromPicture(sk_ref_sp(picture.get()), SkISize::Make(widt h, height),
36 nullptr, nullptr); 36 nullptr, nullptr);
37 } 37 }
38 38
39 typedef SkImage* (*ImageMakerProc)(int width, int height, SkColor colors[2]); 39 typedef sk_sp<SkImage> (*ImageMakerProc)(int width, int height, SkColor colors[2 ]);
40 40
41 static void show_image(SkCanvas* canvas, int width, int height, SkColor colors[2 ], 41 static void show_image(SkCanvas* canvas, int width, int height, SkColor colors[2 ],
42 ImageMakerProc proc) { 42 ImageMakerProc proc) {
43 SkAutoTUnref<SkImage> image(proc(width, height, colors)); 43 sk_sp<SkImage> image(proc(width, height, colors));
44 44
45 SkPaint paint; 45 SkPaint paint;
46 SkRect r; 46 SkRect r;
47 SkIRect ir; 47 SkIRect ir;
48 48
49 paint.setStyle(SkPaint::kStroke_Style); 49 paint.setStyle(SkPaint::kStroke_Style);
50 50
51 ir.set(0, 0, 128, 128); 51 ir.set(0, 0, 128, 128);
52 r.set(ir); 52 r.set(ir);
53 53
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 // since it has a 64K limit on x,y coordinates... (but gpu should succee d) 115 // since it has a 64K limit on x,y coordinates... (but gpu should succee d)
116 show_image(canvas, veryBig, small, colors, fProc); 116 show_image(canvas, veryBig, small, colors, fProc);
117 } 117 }
118 118
119 private: 119 private:
120 typedef skiagm::GM INHERITED; 120 typedef skiagm::GM INHERITED;
121 }; 121 };
122 DEF_GM( return new VeryLargeBitmapGM(make_raster_image, "bitmap"); ) 122 DEF_GM( return new VeryLargeBitmapGM(make_raster_image, "bitmap"); )
123 DEF_GM( return new VeryLargeBitmapGM(make_picture_image, "_picture_image"); ) 123 DEF_GM( return new VeryLargeBitmapGM(make_picture_image, "_picture_image"); )
124 124
OLDNEW
« no previous file with comments | « gm/tileimagefilter.cpp ('k') | gm/xfermodeimagefilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698