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

Side by Side Diff: gm/fadefilter.cpp

Issue 1858813002: Update SkColorFilterImageFilter to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update to ToT Created 4 years, 8 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/dropshadowimagefilter.cpp ('k') | gm/imagefilters.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 "gm.h" 8 #include "gm.h"
9 #include "SkColorMatrixFilter.h" 9 #include "SkColorMatrixFilter.h"
10 #include "SkColorFilterImageFilter.h" 10 #include "SkColorFilterImageFilter.h"
11 11
12 // This GM renders correctly in 8888, but fails in PDF 12 // This GM renders correctly in 8888, but fails in PDF
13 DEF_SIMPLE_GM(fadefilter, canvas, 256, 256) { 13 DEF_SIMPLE_GM(fadefilter, canvas, 256, 256) {
14 SkScalar matrix[20] = { 1, 0, 0, 0, 128.0f, 14 SkScalar matrix[20] = { 1, 0, 0, 0, 128.0f,
15 0, 1, 0, 0, 128.0f, 15 0, 1, 0, 0, 128.0f,
16 0, 0, 1, 0, 128.0f, 16 0, 0, 1, 0, 128.0f,
17 0, 0, 0, 1, 0 }; 17 0, 0, 0, 1, 0 };
18 auto colorFilter(SkColorFilter::MakeMatrixFilterRowMajor255(matrix)); 18 sk_sp<SkColorFilter> colorFilter(SkColorFilter::MakeMatrixFilterRowMajor255( matrix));
19 SkAutoTUnref<SkImageFilter> filter(SkColorFilterImageFilter::Create(colorFil ter.get()));
20 SkPaint layerPaint; 19 SkPaint layerPaint;
21 layerPaint.setImageFilter(filter); 20 layerPaint.setImageFilter(SkColorFilterImageFilter::Make(std::move(colorFilt er), nullptr));
22 canvas->drawRect(SkRect::MakeLTRB(64, 64, 192, 192), layerPaint); 21 canvas->drawRect(SkRect::MakeLTRB(64, 64, 192, 192), layerPaint);
23 } 22 }
OLDNEW
« no previous file with comments | « gm/dropshadowimagefilter.cpp ('k') | gm/imagefilters.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698