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

Side by Side Diff: gm/dftext.cpp

Issue 2071393002: More removal of SkColorProfileType... (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Restore API used in Chrome Created 4 years, 6 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/color4f.cpp ('k') | gm/gamma.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 30 matching lines...) Expand all
41 canvas->translate(-px, -py); 41 canvas->translate(-px, -py);
42 } 42 }
43 43
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 SkISize size = onISize();
52 inputCanvas->imageInfo().p rofileType()); 52 SkImageInfo info = SkImageInfo::MakeN32(size.width(), size.height(), kPr emul_SkAlphaType,
53 sk_ref_sp(inputCanvas->imageInfo ().colorSpace()));
53 SkSurfaceProps canvasProps(SkSurfaceProps::kLegacyFontHost_InitType); 54 SkSurfaceProps canvasProps(SkSurfaceProps::kLegacyFontHost_InitType);
54 uint32_t gammaCorrect = inputCanvas->getProps(&canvasProps) 55 uint32_t gammaCorrect = inputCanvas->getProps(&canvasProps)
55 ? canvasProps.flags() & SkSurfaceProps::kGammaCorrect_Flag : 0; 56 ? canvasProps.flags() & SkSurfaceProps::kGammaCorrect_Flag : 0;
56 SkSurfaceProps props(SkSurfaceProps::kUseDeviceIndependentFonts_Flag | g ammaCorrect, 57 SkSurfaceProps props(SkSurfaceProps::kUseDeviceIndependentFonts_Flag | g ammaCorrect,
57 SkSurfaceProps::kLegacyFontHost_InitType); 58 SkSurfaceProps::kLegacyFontHost_InitType);
58 auto surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info, 0, &props)); 59 auto surface(SkSurface::MakeRenderTarget(ctx, SkBudgeted::kNo, info, 0, &props));
59 SkCanvas* canvas = surface ? surface->getCanvas() : inputCanvas; 60 SkCanvas* canvas = surface ? surface->getCanvas() : inputCanvas;
60 // init our new canvas with the old canvas's matrix 61 // init our new canvas with the old canvas's matrix
61 canvas->setMatrix(inputCanvas->getTotalMatrix()); 62 canvas->setMatrix(inputCanvas->getTotalMatrix());
62 #else 63 #else
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 } 211 }
211 212
212 private: 213 private:
213 sk_sp<SkTypeface> fEmojiTypeface; 214 sk_sp<SkTypeface> fEmojiTypeface;
214 const char* fEmojiText; 215 const char* fEmojiText;
215 216
216 typedef skiagm::GM INHERITED; 217 typedef skiagm::GM INHERITED;
217 }; 218 };
218 219
219 DEF_GM(return new DFTextGM;) 220 DEF_GM(return new DFTextGM;)
OLDNEW
« no previous file with comments | « gm/color4f.cpp ('k') | gm/gamma.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698