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

Side by Side Diff: src/ports/SkScalerContext_win_dw.h

Issue 1872253004: Revert of Pass effects directly to fontcache (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « src/ports/SkFontHost_win.cpp ('k') | src/ports/SkScalerContext_win_dw.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 2014 Google Inc. 2 * Copyright 2014 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 #ifndef SkScalarContext_win_dw_DEFINED 8 #ifndef SkScalarContext_win_dw_DEFINED
9 #define SkScalarContext_win_dw_DEFINED 9 #define SkScalarContext_win_dw_DEFINED
10 10
11 #include "SkScalar.h" 11 #include "SkScalar.h"
12 #include "SkScalerContext.h" 12 #include "SkScalerContext.h"
13 #include "SkTypeface_win_dw.h" 13 #include "SkTypeface_win_dw.h"
14 #include "SkTypes.h" 14 #include "SkTypes.h"
15 15
16 #include <dwrite.h> 16 #include <dwrite.h>
17 17
18 class SkGlyph; 18 class SkGlyph;
19 class SkDescriptor; 19 class SkDescriptor;
20 20
21 class SkScalerContext_DW : public SkScalerContext { 21 class SkScalerContext_DW : public SkScalerContext {
22 public: 22 public:
23 SkScalerContext_DW(DWriteFontTypeface*, const SkScalerContextEffects&, const SkDescriptor*); 23 SkScalerContext_DW(DWriteFontTypeface*, const SkDescriptor* desc);
24 virtual ~SkScalerContext_DW(); 24 virtual ~SkScalerContext_DW();
25 25
26 protected: 26 protected:
27 unsigned generateGlyphCount() override; 27 unsigned generateGlyphCount() override;
28 uint16_t generateCharToGlyph(SkUnichar uni) override; 28 uint16_t generateCharToGlyph(SkUnichar uni) override;
29 void generateAdvance(SkGlyph* glyph) override; 29 void generateAdvance(SkGlyph* glyph) override;
30 void generateMetrics(SkGlyph* glyph) override; 30 void generateMetrics(SkGlyph* glyph) override;
31 void generateImage(const SkGlyph& glyph) override; 31 void generateImage(const SkGlyph& glyph) override;
32 void generatePath(const SkGlyph& glyph, SkPath* path) override; 32 void generatePath(const SkGlyph& glyph, SkPath* path) override;
33 void generateFontMetrics(SkPaint::FontMetrics*) override; 33 void generateFontMetrics(SkPaint::FontMetrics*) override;
(...skipping 26 matching lines...) Expand all
60 /** The text size to measure with. */ 60 /** The text size to measure with. */
61 SkScalar fTextSizeMeasure; 61 SkScalar fTextSizeMeasure;
62 SkAutoTUnref<DWriteFontTypeface> fTypeface; 62 SkAutoTUnref<DWriteFontTypeface> fTypeface;
63 int fGlyphCount; 63 int fGlyphCount;
64 DWRITE_RENDERING_MODE fRenderingMode; 64 DWRITE_RENDERING_MODE fRenderingMode;
65 DWRITE_TEXTURE_TYPE fTextureType; 65 DWRITE_TEXTURE_TYPE fTextureType;
66 DWRITE_MEASURING_MODE fMeasuringMode; 66 DWRITE_MEASURING_MODE fMeasuringMode;
67 }; 67 };
68 68
69 #endif 69 #endif
OLDNEW
« no previous file with comments | « src/ports/SkFontHost_win.cpp ('k') | src/ports/SkScalerContext_win_dw.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698