summarylogtreecommitdiffstats
path: root/gfxFont.patch
blob: 609797cf8006e07e460e4943fa534ba2719bbde7 (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
--- firefox-52.9.0esr.orig/gfx/thebes/gfxFont.cpp       2020-06-03 21:55:12.303261510 +0300
+++ firefox-52.9.0esr/gfx/thebes/gfxFont.cpp    2020-06-03 21:57:35.318890953 +0300
@@ -3071,6 +3071,28 @@
 
     return true;
 }
+// Explicit instantiations of GetShapedWord, to avoid libxul link failure
+template gfxShapedWord*
+gfxFont::GetShapedWord(DrawTarget *aDrawTarget,
+                       const uint8_t *aText,
+                       uint32_t aLength,
+                       uint32_t aHash,
+                       Script aRunScript,
+                       bool aVertical,
+                       int32_t aAppUnitsPerDevUnit,
+                       uint32_t aFlags,
+                       gfxTextPerfMetrics *aTextPerf);
+
+template gfxShapedWord*
+gfxFont::GetShapedWord(DrawTarget *aDrawTarget,
+                       const char16_t *aText,
+                       uint32_t aLength,
+                       uint32_t aHash,
+                       Script aRunScript,
+                       bool aVertical,
+                       int32_t aAppUnitsPerDevUnit,
+                       uint32_t aFlags,
+                       gfxTextPerfMetrics *aTextPerf);
 
 // Explicit instantiations of SplitAndInitTextRun, to avoid libxul link failure
 template bool
--- firefox-52.9.0esr.orig/gfx/thebes/gfxFont.h 2020-06-03 21:55:12.299928120 +0300
+++ firefox-52.9.0esr/gfx/thebes/gfxFont.h      2020-06-03 21:58:04.522669252 +0300
@@ -2171,6 +2171,72 @@
     static double CalcXScale(DrawTarget* aDrawTarget);
 };
 
+// Explicit declarations of SplitAndInitTextRun, to avoid libxul link failure
+extern template bool
+gfxFont::SplitAndInitTextRun(DrawTarget *aDrawTarget,
+                             gfxTextRun *aTextRun,
+                             const uint8_t *aString,
+                             uint32_t aRunStart,
+                             uint32_t aRunLength,
+                             Script aRunScript,
+                             bool aVertical);
+
+extern template bool
+gfxFont::SplitAndInitTextRun(DrawTarget *aDrawTarget,
+                             gfxTextRun *aTextRun,
+                             const char16_t *aString,
+                             uint32_t aRunStart,
+                             uint32_t aRunLength,
+                             Script aRunScript,
+                             bool aVertical);
+
+// Explicit declarations of GetShapedWord, to avoid libxul link failure
+extern template gfxShapedWord*
+gfxFont::GetShapedWord(DrawTarget *aDrawTarget,
+                       const uint8_t *aText,
+                       uint32_t aLength,
+                       uint32_t aHash,
+                       Script aRunScript,
+                       bool aVertical,
+                       int32_t aAppUnitsPerDevUnit,
+                       uint32_t aFlags,
+                       gfxTextPerfMetrics *aTextPerf);
+
+extern template gfxShapedWord*
+gfxFont::GetShapedWord(DrawTarget *aDrawTarget,
+                       const char16_t *aText,
+                       uint32_t aLength,
+                       uint32_t aHash,
+                       Script aRunScript,
+                       bool aVertical,
+                       int32_t aAppUnitsPerDevUnit,
+                       uint32_t aFlags,
+                       gfxTextPerfMetrics *aTextPerf);
+
+// Explicit declarations of InitFakeSmallCapsRun, to avoid libxul link failure
+template<> bool
+gfxFont::InitFakeSmallCapsRun(DrawTarget *aDrawTarget,
+                              gfxTextRun *aTextRun,
+                              const uint8_t *aText,
+                              uint32_t    aOffset,
+                              uint32_t    aLength,
+                              uint8_t     aMatchType,
+                              uint16_t    aOrientation,
+                              Script      aScript,
+                              bool        aSyntheticLower,
+                              bool        aSyntheticUpper);
+template<> bool
+gfxFont::InitFakeSmallCapsRun(DrawTarget *aDrawTarget,
+                              gfxTextRun *aTextRun,
+                              const char16_t *aText,
+                              uint32_t    aOffset,
+                              uint32_t    aLength,
+                              uint8_t     aMatchType,
+                              uint16_t    aOrientation,
+                              Script      aScript,
+                              bool        aSyntheticLower,
+                              bool        aSyntheticUpper);
+
 // proportion of ascent used for x-height, if unable to read value from font
 #define DEFAULT_XHEIGHT_FACTOR 0.56f