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

Side by Side Diff: gm/largeglyphblur.cpp

Issue 2335493005: Use sk_sp text blob APIs (Closed)
Patch Set: SK_SUPPORT_LEGACY_TEXTBLOB_BUILDER Created 4 years, 3 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 | « bench/TextBlobBench.cpp ('k') | gm/lcdoverlap.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 BD-style license that can be 4 * Use of this source code is governed by a BD-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 9
10 #include "SkBlurMask.h" 10 #include "SkBlurMask.h"
(...skipping 14 matching lines...) Expand all
25 // setup up maskfilter 25 // setup up maskfilter
26 const SkScalar kSigma = SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(4 0)); 26 const SkScalar kSigma = SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(4 0));
27 27
28 SkPaint blurPaint(paint); 28 SkPaint blurPaint(paint);
29 blurPaint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, kSig ma)); 29 blurPaint.setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle, kSig ma));
30 30
31 SkTextBlobBuilder builder; 31 SkTextBlobBuilder builder;
32 32
33 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0); 33 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0);
34 34
35 SkAutoTUnref<const SkTextBlob> blob(builder.build()); 35 sk_sp<SkTextBlob> blob(builder.make());
36 canvas->drawTextBlob(blob.get(), 10, 200, blurPaint); 36 canvas->drawTextBlob(blob, 10, 200, blurPaint);
37 canvas->drawTextBlob(blob.get(), 10, 200, paint); 37 canvas->drawTextBlob(blob, 10, 200, paint);
38 38
39 size_t len = strlen(text); 39 size_t len = strlen(text);
40 canvas->drawText(text, len, 10, 500, blurPaint); 40 canvas->drawText(text, len, 10, 500, blurPaint);
41 canvas->drawText(text, len, 10, 500, paint); 41 canvas->drawText(text, len, 10, 500, paint);
42 } 42 }
OLDNEW
« no previous file with comments | « bench/TextBlobBench.cpp ('k') | gm/lcdoverlap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698