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

Side by Side Diff: gm/dftext.cpp

Issue 1817383002: switch surface to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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/complexclip_blur_tiled.cpp ('k') | gm/discard.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 2011 Google Inc. 2 * Copyright 2011 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 #include "gm.h" 7 #include "gm.h"
8 #include "Resources.h" 8 #include "Resources.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkStream.h" 10 #include "SkStream.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual void onDraw(SkCanvas* inputCanvas) override { 44 virtual void onDraw(SkCanvas* inputCanvas) override {
45 SkScalar textSizes[] = { 9.0f, 9.0f*2.0f, 9.0f*5.0f, 9.0f*2.0f*5.0f }; 45 SkScalar textSizes[] = { 9.0f, 9.0f*2.0f, 9.0f*5.0f, 9.0f*2.0f*5.0f };
46 SkScalar scales[] = { 2.0f*5.0f, 5.0f, 2.0f, 1.0f }; 46 SkScalar scales[] = { 2.0f*5.0f, 5.0f, 2.0f, 1.0f };
47 47
48 // set up offscreen rendering with distance field text 48 // set up offscreen rendering with distance field text
49 #if SK_SUPPORT_GPU 49 #if SK_SUPPORT_GPU
50 GrContext* ctx = inputCanvas->getGrContext(); 50 GrContext* ctx = inputCanvas->getGrContext();
51 SkImageInfo info = SkImageInfo::MakeN32Premul(onISize()); 51 SkImageInfo info = SkImageInfo::MakeN32Premul(onISize());
52 SkSurfaceProps props(SkSurfaceProps::kUseDeviceIndependentFonts_Flag, 52 SkSurfaceProps props(SkSurfaceProps::kUseDeviceIndependentFonts_Flag,
53 SkSurfaceProps::kLegacyFontHost_InitType); 53 SkSurfaceProps::kLegacyFontHost_InitType);
54 SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget(ctx, SkBudget ed::kNo, 54 auto surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info, 0, &props));
55 info, 0, &pro ps)); 55 SkCanvas* canvas = surface ? surface->getCanvas() : inputCanvas;
56 SkCanvas* canvas = surface.get() ? surface->getCanvas() : inputCanvas;
57 // init our new canvas with the old canvas's matrix 56 // init our new canvas with the old canvas's matrix
58 canvas->setMatrix(inputCanvas->getTotalMatrix()); 57 canvas->setMatrix(inputCanvas->getTotalMatrix());
59 #else 58 #else
60 SkCanvas* canvas = inputCanvas; 59 SkCanvas* canvas = inputCanvas;
61 #endif 60 #endif
62 // apply global scale to test glyph positioning 61 // apply global scale to test glyph positioning
63 canvas->scale(1.05f, 1.05f); 62 canvas->scale(1.05f, 1.05f);
64 canvas->clear(0xffffffff); 63 canvas->clear(0xffffffff);
65 64
66 SkPaint paint; 65 SkPaint paint;
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 } 206 }
208 207
209 private: 208 private:
210 SkAutoTUnref<SkTypeface> fEmojiTypeface; 209 SkAutoTUnref<SkTypeface> fEmojiTypeface;
211 const char* fEmojiText; 210 const char* fEmojiText;
212 211
213 typedef skiagm::GM INHERITED; 212 typedef skiagm::GM INHERITED;
214 }; 213 };
215 214
216 DEF_GM(return new DFTextGM;) 215 DEF_GM(return new DFTextGM;)
OLDNEW
« no previous file with comments | « gm/complexclip_blur_tiled.cpp ('k') | gm/discard.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698