blob: e48ba8ccd37e43a1e8af0f09c8839b5fe2152fc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/render_view_impl.h"
#include "content/public/common/renderer_preferences.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/linux/WebFontRendering.h"
using WebKit::WebFontRendering;
static SkPaint::Hinting RendererPreferencesToSkiaHinting(
const content::RendererPreferences& prefs) {
if (!prefs.should_antialias_text) {
// When anti-aliasing is off, GTK maps all non-zero hinting settings to
// 'Normal' hinting so we do the same. Otherwise, folks who have 'Slight'
// hinting selected will see readable text in everything expect Chromium.
switch (prefs.hinting) {
case content::RENDERER_PREFERENCES_HINTING_NONE:
return SkPaint::kNo_Hinting;
case content::RENDERER_PREFERENCES_HINTING_SYSTEM_DEFAULT:
case content::RENDERER_PREFERENCES_HINTING_SLIGHT:
case content::RENDERER_PREFERENCES_HINTING_MEDIUM:
case content::RENDERER_PREFERENCES_HINTING_FULL:
return SkPaint::kNormal_Hinting;
default:
NOTREACHED();
return SkPaint::kNormal_Hinting;
}
}
switch (prefs.hinting) {
case content::RENDERER_PREFERENCES_HINTING_SYSTEM_DEFAULT:
return SkPaint::kNormal_Hinting;
case content::RENDERER_PREFERENCES_HINTING_NONE:
return SkPaint::kNo_Hinting;
case content::RENDERER_PREFERENCES_HINTING_SLIGHT:
return SkPaint::kSlight_Hinting;
case content::RENDERER_PREFERENCES_HINTING_MEDIUM:
return SkPaint::kNormal_Hinting;
case content::RENDERER_PREFERENCES_HINTING_FULL:
return SkPaint::kFull_Hinting;
default:
NOTREACHED();
return SkPaint::kNormal_Hinting;
}
}
static SkFontHost::LCDOrder RendererPreferencesToSkiaLCDOrder(
content::RendererPreferencesSubpixelRenderingEnum subpixel) {
switch (subpixel) {
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_SYSTEM_DEFAULT:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_NONE:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_RGB:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_VRGB:
return SkFontHost::kRGB_LCDOrder;
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_BGR:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_VBGR:
return SkFontHost::kBGR_LCDOrder;
default:
NOTREACHED();
return SkFontHost::kRGB_LCDOrder;
}
}
static SkFontHost::LCDOrientation
RendererPreferencesToSkiaLCDOrientation(
content::RendererPreferencesSubpixelRenderingEnum subpixel) {
switch (subpixel) {
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_SYSTEM_DEFAULT:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_NONE:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_RGB:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_BGR:
return SkFontHost::kHorizontal_LCDOrientation;
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_VRGB:
case content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_VBGR:
return SkFontHost::kVertical_LCDOrientation;
default:
NOTREACHED();
return SkFontHost::kHorizontal_LCDOrientation;
}
}
static bool RendererPreferencesToAntiAliasFlag(
const content::RendererPreferences& prefs) {
return prefs.should_antialias_text;
}
static bool RendererPreferencesToSubpixelGlyphsFlag(
const content::RendererPreferences& prefs) {
if (prefs.subpixel_rendering !=
content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_SYSTEM_DEFAULT &&
prefs.subpixel_rendering !=
content::RENDERER_PREFERENCES_SUBPIXEL_RENDERING_NONE) {
return true;
}
return false;
}
void RenderViewImpl::UpdateFontRenderingFromRendererPrefs() {
const content::RendererPreferences& prefs = renderer_preferences_;
WebFontRendering::setHinting(RendererPreferencesToSkiaHinting(prefs));
WebFontRendering::setLCDOrder(RendererPreferencesToSkiaLCDOrder(
prefs.subpixel_rendering));
WebFontRendering::setLCDOrientation(RendererPreferencesToSkiaLCDOrientation(
prefs.subpixel_rendering));
WebFontRendering::setAntiAlias(RendererPreferencesToAntiAliasFlag(prefs));
WebFontRendering::setSubpixelGlyphs(RendererPreferencesToSubpixelGlyphsFlag(
prefs));
}
|