jassub 1.7.11 → 1.7.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. package/LICENSE +22 -22
  2. package/README.md +251 -251
  3. package/dist/COPYRIGHT +951 -951
  4. package/dist/jassub-worker.wasm.js +1 -1
  5. package/dist/jassub.es.js +1 -1
  6. package/dist/jassub.umd.js +1 -1
  7. package/dist/js/jassub-worker.js +4 -4
  8. package/dist/js/jassub-worker.wasm +0 -0
  9. package/dist/js/jassub-worker.wasm.js +26 -25
  10. package/dist/js/jassub.js +832 -832
  11. package/dist/libraries/bin/brotli.js +1 -0
  12. package/dist/libraries/include/ass/ass.h +812 -0
  13. package/dist/libraries/include/ass/ass_types.h +292 -0
  14. package/dist/libraries/include/brotli/decode.h +344 -0
  15. package/dist/libraries/include/brotli/encode.h +448 -0
  16. package/dist/libraries/include/brotli/port.h +288 -0
  17. package/dist/libraries/include/brotli/types.h +83 -0
  18. package/dist/libraries/include/expat.h +1064 -0
  19. package/dist/libraries/include/expat_config.h +115 -0
  20. package/dist/libraries/include/expat_external.h +165 -0
  21. package/dist/libraries/include/fontconfig/fcfreetype.h +59 -0
  22. package/dist/libraries/include/fontconfig/fcprivate.h +134 -0
  23. package/dist/libraries/include/fontconfig/fontconfig.h +1154 -0
  24. package/dist/libraries/include/freetype2/freetype/config/ftconfig.h +63 -0
  25. package/dist/libraries/include/freetype2/freetype/config/ftheader.h +824 -0
  26. package/dist/libraries/include/freetype2/freetype/config/ftmodule.h +20 -0
  27. package/dist/libraries/include/freetype2/freetype/config/ftoption.h +1011 -0
  28. package/dist/libraries/include/freetype2/freetype/config/ftstdlib.h +175 -0
  29. package/dist/libraries/include/freetype2/freetype/config/integer-types.h +245 -0
  30. package/dist/libraries/include/freetype2/freetype/config/mac-support.h +49 -0
  31. package/dist/libraries/include/freetype2/freetype/config/public-macros.h +120 -0
  32. package/dist/libraries/include/freetype2/freetype/freetype.h +4833 -0
  33. package/dist/libraries/include/freetype2/freetype/ftadvanc.h +188 -0
  34. package/dist/libraries/include/freetype2/freetype/ftbbox.h +101 -0
  35. package/dist/libraries/include/freetype2/freetype/ftbdf.h +212 -0
  36. package/dist/libraries/include/freetype2/freetype/ftbitmap.h +329 -0
  37. package/dist/libraries/include/freetype2/freetype/ftbzip2.h +102 -0
  38. package/dist/libraries/include/freetype2/freetype/ftcache.h +1087 -0
  39. package/dist/libraries/include/freetype2/freetype/ftchapters.h +147 -0
  40. package/dist/libraries/include/freetype2/freetype/ftcid.h +167 -0
  41. package/dist/libraries/include/freetype2/freetype/ftcolor.h +1609 -0
  42. package/dist/libraries/include/freetype2/freetype/ftdriver.h +1193 -0
  43. package/dist/libraries/include/freetype2/freetype/fterrdef.h +279 -0
  44. package/dist/libraries/include/freetype2/freetype/fterrors.h +296 -0
  45. package/dist/libraries/include/freetype2/freetype/ftfntfmt.h +93 -0
  46. package/dist/libraries/include/freetype2/freetype/ftgasp.h +143 -0
  47. package/dist/libraries/include/freetype2/freetype/ftglyph.h +664 -0
  48. package/dist/libraries/include/freetype2/freetype/ftgxval.h +354 -0
  49. package/dist/libraries/include/freetype2/freetype/ftgzip.h +151 -0
  50. package/dist/libraries/include/freetype2/freetype/ftimage.h +1276 -0
  51. package/dist/libraries/include/freetype2/freetype/ftincrem.h +348 -0
  52. package/dist/libraries/include/freetype2/freetype/ftlcdfil.h +323 -0
  53. package/dist/libraries/include/freetype2/freetype/ftlist.h +296 -0
  54. package/dist/libraries/include/freetype2/freetype/ftlogging.h +184 -0
  55. package/dist/libraries/include/freetype2/freetype/ftlzw.h +100 -0
  56. package/dist/libraries/include/freetype2/freetype/ftmac.h +289 -0
  57. package/dist/libraries/include/freetype2/freetype/ftmm.h +752 -0
  58. package/dist/libraries/include/freetype2/freetype/ftmodapi.h +806 -0
  59. package/dist/libraries/include/freetype2/freetype/ftmoderr.h +204 -0
  60. package/dist/libraries/include/freetype2/freetype/ftotval.h +206 -0
  61. package/dist/libraries/include/freetype2/freetype/ftoutln.h +586 -0
  62. package/dist/libraries/include/freetype2/freetype/ftparams.h +203 -0
  63. package/dist/libraries/include/freetype2/freetype/ftpfr.h +179 -0
  64. package/dist/libraries/include/freetype2/freetype/ftrender.h +244 -0
  65. package/dist/libraries/include/freetype2/freetype/ftsizes.h +159 -0
  66. package/dist/libraries/include/freetype2/freetype/ftsnames.h +272 -0
  67. package/dist/libraries/include/freetype2/freetype/ftstroke.h +773 -0
  68. package/dist/libraries/include/freetype2/freetype/ftsynth.h +83 -0
  69. package/dist/libraries/include/freetype2/freetype/ftsystem.h +352 -0
  70. package/dist/libraries/include/freetype2/freetype/fttrigon.h +350 -0
  71. package/dist/libraries/include/freetype2/freetype/fttypes.h +615 -0
  72. package/dist/libraries/include/freetype2/freetype/ftwinfnt.h +276 -0
  73. package/dist/libraries/include/freetype2/freetype/t1tables.h +773 -0
  74. package/dist/libraries/include/freetype2/freetype/ttnameid.h +1235 -0
  75. package/dist/libraries/include/freetype2/freetype/tttables.h +855 -0
  76. package/dist/libraries/include/freetype2/freetype/tttags.h +123 -0
  77. package/dist/libraries/include/freetype2/ft2build.h +42 -0
  78. package/dist/libraries/include/fribidi/fribidi-arabic.h +81 -0
  79. package/dist/libraries/include/fribidi/fribidi-begindecls.h +3 -0
  80. package/dist/libraries/include/fribidi/fribidi-bidi-types-list.h +96 -0
  81. package/dist/libraries/include/fribidi/fribidi-bidi-types.h +405 -0
  82. package/dist/libraries/include/fribidi/fribidi-bidi.h +142 -0
  83. package/dist/libraries/include/fribidi/fribidi-brackets.h +89 -0
  84. package/dist/libraries/include/fribidi/fribidi-char-sets-list.h +54 -0
  85. package/dist/libraries/include/fribidi/fribidi-char-sets.h +106 -0
  86. package/dist/libraries/include/fribidi/fribidi-common.h +158 -0
  87. package/dist/libraries/include/fribidi/fribidi-config.h +23 -0
  88. package/dist/libraries/include/fribidi/fribidi-deprecated.h +175 -0
  89. package/dist/libraries/include/fribidi/fribidi-enddecls.h +3 -0
  90. package/dist/libraries/include/fribidi/fribidi-flags.h +72 -0
  91. package/dist/libraries/include/fribidi/fribidi-joining-types-list.h +44 -0
  92. package/dist/libraries/include/fribidi/fribidi-joining-types.h +249 -0
  93. package/dist/libraries/include/fribidi/fribidi-joining.h +74 -0
  94. package/dist/libraries/include/fribidi/fribidi-mirroring.h +86 -0
  95. package/dist/libraries/include/fribidi/fribidi-shape.h +71 -0
  96. package/dist/libraries/include/fribidi/fribidi-types.h +79 -0
  97. package/dist/libraries/include/fribidi/fribidi-unicode-version.h +10 -0
  98. package/dist/libraries/include/fribidi/fribidi-unicode.h +105 -0
  99. package/dist/libraries/include/fribidi/fribidi.h +129 -0
  100. package/dist/libraries/include/harfbuzz/hb-aat-layout.h +795 -0
  101. package/dist/libraries/include/harfbuzz/hb-aat.h +38 -0
  102. package/dist/libraries/include/harfbuzz/hb-blob.h +160 -0
  103. package/dist/libraries/include/harfbuzz/hb-buffer.h +799 -0
  104. package/dist/libraries/include/harfbuzz/hb-common.h +902 -0
  105. package/dist/libraries/include/harfbuzz/hb-cplusplus.hh +221 -0
  106. package/dist/libraries/include/harfbuzz/hb-deprecated.h +251 -0
  107. package/dist/libraries/include/harfbuzz/hb-draw.h +325 -0
  108. package/dist/libraries/include/harfbuzz/hb-face.h +181 -0
  109. package/dist/libraries/include/harfbuzz/hb-font.h +1108 -0
  110. package/dist/libraries/include/harfbuzz/hb-ft.h +145 -0
  111. package/dist/libraries/include/harfbuzz/hb-map.h +124 -0
  112. package/dist/libraries/include/harfbuzz/hb-ot-color.h +146 -0
  113. package/dist/libraries/include/harfbuzz/hb-ot-deprecated.h +141 -0
  114. package/dist/libraries/include/harfbuzz/hb-ot-font.h +45 -0
  115. package/dist/libraries/include/harfbuzz/hb-ot-layout.h +503 -0
  116. package/dist/libraries/include/harfbuzz/hb-ot-math.h +333 -0
  117. package/dist/libraries/include/harfbuzz/hb-ot-meta.h +72 -0
  118. package/dist/libraries/include/harfbuzz/hb-ot-metrics.h +129 -0
  119. package/dist/libraries/include/harfbuzz/hb-ot-name.h +158 -0
  120. package/dist/libraries/include/harfbuzz/hb-ot-shape.h +53 -0
  121. package/dist/libraries/include/harfbuzz/hb-ot-var.h +191 -0
  122. package/dist/libraries/include/harfbuzz/hb-ot.h +49 -0
  123. package/dist/libraries/include/harfbuzz/hb-set.h +200 -0
  124. package/dist/libraries/include/harfbuzz/hb-shape-plan.h +122 -0
  125. package/dist/libraries/include/harfbuzz/hb-shape.h +62 -0
  126. package/dist/libraries/include/harfbuzz/hb-style.h +81 -0
  127. package/dist/libraries/include/harfbuzz/hb-subset-repacker.h +81 -0
  128. package/dist/libraries/include/harfbuzz/hb-subset.h +234 -0
  129. package/dist/libraries/include/harfbuzz/hb-unicode.h +643 -0
  130. package/dist/libraries/include/harfbuzz/hb-version.h +95 -0
  131. package/dist/libraries/include/harfbuzz/hb.h +50 -0
  132. package/dist/libraries/lib/cmake/expat-2.4.7/expat-config-version.cmake +70 -0
  133. package/dist/libraries/lib/cmake/expat-2.4.7/expat-config.cmake +99 -0
  134. package/dist/libraries/lib/cmake/expat-2.4.7/expat-noconfig.cmake +19 -0
  135. package/dist/libraries/lib/cmake/expat-2.4.7/expat.cmake +99 -0
  136. package/dist/libraries/lib/libass.a +0 -0
  137. package/dist/libraries/lib/libass.la +41 -0
  138. package/dist/libraries/lib/libbrotlicommon.a +0 -0
  139. package/dist/libraries/lib/libbrotlidec.a +0 -0
  140. package/dist/libraries/lib/libbrotlienc.a +0 -0
  141. package/dist/libraries/lib/libexpat.a +0 -0
  142. package/dist/libraries/lib/libfontconfig.a +0 -0
  143. package/dist/libraries/lib/libfontconfig.la +41 -0
  144. package/dist/libraries/lib/libfreetype.a +0 -0
  145. package/dist/libraries/lib/libfreetype.la +41 -0
  146. package/dist/libraries/lib/libfribidi.a +0 -0
  147. package/dist/libraries/lib/libfribidi.la +41 -0
  148. package/dist/libraries/lib/libharfbuzz-subset.a +0 -0
  149. package/dist/libraries/lib/libharfbuzz-subset.la +41 -0
  150. package/dist/libraries/lib/libharfbuzz.a +0 -0
  151. package/dist/libraries/lib/libharfbuzz.la +41 -0
  152. package/dist/libraries/lib/pkgconfig/expat.pc +11 -0
  153. package/dist/libraries/lib/pkgconfig/fontconfig.pc +18 -0
  154. package/dist/libraries/lib/pkgconfig/freetype2.pc +14 -0
  155. package/dist/libraries/lib/pkgconfig/fribidi.pc +13 -0
  156. package/dist/libraries/lib/pkgconfig/harfbuzz-subset.pc +12 -0
  157. package/dist/libraries/lib/pkgconfig/harfbuzz.pc +13 -0
  158. package/dist/libraries/lib/pkgconfig/libass.pc +13 -0
  159. package/dist/libraries/lib/pkgconfig/libbrotlicommon.pc +11 -0
  160. package/dist/libraries/lib/pkgconfig/libbrotlidec.pc +12 -0
  161. package/dist/libraries/lib/pkgconfig/libbrotlienc.pc +12 -0
  162. package/dist/libraries/share/aclocal/freetype2.m4 +194 -0
  163. package/dist/libraries/share/doc/expat/AUTHORS +10 -0
  164. package/dist/libraries/share/doc/expat/changelog +1161 -0
  165. package/index.d.ts +115 -115
  166. package/package.json +1 -1
@@ -0,0 +1,824 @@
1
+ /****************************************************************************
2
+ *
3
+ * ftheader.h
4
+ *
5
+ * Build macros of the FreeType 2 library.
6
+ *
7
+ * Copyright (C) 1996-2021 by
8
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
9
+ *
10
+ * This file is part of the FreeType project, and may only be used,
11
+ * modified, and distributed under the terms of the FreeType project
12
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
13
+ * this file you indicate that you have read the license and
14
+ * understand and accept it fully.
15
+ *
16
+ */
17
+
18
+ #ifndef FTHEADER_H_
19
+ #define FTHEADER_H_
20
+
21
+
22
+ /*@***********************************************************************/
23
+ /* */
24
+ /* <Macro> */
25
+ /* FT_BEGIN_HEADER */
26
+ /* */
27
+ /* <Description> */
28
+ /* This macro is used in association with @FT_END_HEADER in header */
29
+ /* files to ensure that the declarations within are properly */
30
+ /* encapsulated in an `extern "C" { .. }` block when included from a */
31
+ /* C++ compiler. */
32
+ /* */
33
+ #ifndef FT_BEGIN_HEADER
34
+ # ifdef __cplusplus
35
+ # define FT_BEGIN_HEADER extern "C" {
36
+ # else
37
+ # define FT_BEGIN_HEADER /* nothing */
38
+ # endif
39
+ #endif
40
+
41
+
42
+ /*@***********************************************************************/
43
+ /* */
44
+ /* <Macro> */
45
+ /* FT_END_HEADER */
46
+ /* */
47
+ /* <Description> */
48
+ /* This macro is used in association with @FT_BEGIN_HEADER in header */
49
+ /* files to ensure that the declarations within are properly */
50
+ /* encapsulated in an `extern "C" { .. }` block when included from a */
51
+ /* C++ compiler. */
52
+ /* */
53
+ #ifndef FT_END_HEADER
54
+ # ifdef __cplusplus
55
+ # define FT_END_HEADER }
56
+ # else
57
+ # define FT_END_HEADER /* nothing */
58
+ # endif
59
+ #endif
60
+
61
+
62
+ /**************************************************************************
63
+ *
64
+ * Aliases for the FreeType 2 public and configuration files.
65
+ *
66
+ */
67
+
68
+ /**************************************************************************
69
+ *
70
+ * @section:
71
+ * header_file_macros
72
+ *
73
+ * @title:
74
+ * Header File Macros
75
+ *
76
+ * @abstract:
77
+ * Macro definitions used to `#include` specific header files.
78
+ *
79
+ * @description:
80
+ * In addition to the normal scheme of including header files like
81
+ *
82
+ * ```
83
+ * #include <freetype/freetype.h>
84
+ * #include <freetype/ftmm.h>
85
+ * #include <freetype/ftglyph.h>
86
+ * ```
87
+ *
88
+ * it is possible to used named macros instead. They can be used
89
+ * directly in `#include` statements as in
90
+ *
91
+ * ```
92
+ * #include FT_FREETYPE_H
93
+ * #include FT_MULTIPLE_MASTERS_H
94
+ * #include FT_GLYPH_H
95
+ * ```
96
+ *
97
+ * These macros were introduced to overcome the infamous 8.3~naming rule
98
+ * required by DOS (and `FT_MULTIPLE_MASTERS_H` is a lot more meaningful
99
+ * than `ftmm.h`).
100
+ *
101
+ */
102
+
103
+
104
+ /* configuration files */
105
+
106
+ /**************************************************************************
107
+ *
108
+ * @macro:
109
+ * FT_CONFIG_CONFIG_H
110
+ *
111
+ * @description:
112
+ * A macro used in `#include` statements to name the file containing
113
+ * FreeType~2 configuration data.
114
+ *
115
+ */
116
+ #ifndef FT_CONFIG_CONFIG_H
117
+ #define FT_CONFIG_CONFIG_H <freetype/config/ftconfig.h>
118
+ #endif
119
+
120
+
121
+ /**************************************************************************
122
+ *
123
+ * @macro:
124
+ * FT_CONFIG_STANDARD_LIBRARY_H
125
+ *
126
+ * @description:
127
+ * A macro used in `#include` statements to name the file containing
128
+ * FreeType~2 interface to the standard C library functions.
129
+ *
130
+ */
131
+ #ifndef FT_CONFIG_STANDARD_LIBRARY_H
132
+ #define FT_CONFIG_STANDARD_LIBRARY_H <freetype/config/ftstdlib.h>
133
+ #endif
134
+
135
+
136
+ /**************************************************************************
137
+ *
138
+ * @macro:
139
+ * FT_CONFIG_OPTIONS_H
140
+ *
141
+ * @description:
142
+ * A macro used in `#include` statements to name the file containing
143
+ * FreeType~2 project-specific configuration options.
144
+ *
145
+ */
146
+ #ifndef FT_CONFIG_OPTIONS_H
147
+ #define FT_CONFIG_OPTIONS_H <freetype/config/ftoption.h>
148
+ #endif
149
+
150
+
151
+ /**************************************************************************
152
+ *
153
+ * @macro:
154
+ * FT_CONFIG_MODULES_H
155
+ *
156
+ * @description:
157
+ * A macro used in `#include` statements to name the file containing the
158
+ * list of FreeType~2 modules that are statically linked to new library
159
+ * instances in @FT_Init_FreeType.
160
+ *
161
+ */
162
+ #ifndef FT_CONFIG_MODULES_H
163
+ #define FT_CONFIG_MODULES_H <freetype/config/ftmodule.h>
164
+ #endif
165
+
166
+ /* */
167
+
168
+ /* public headers */
169
+
170
+ /**************************************************************************
171
+ *
172
+ * @macro:
173
+ * FT_FREETYPE_H
174
+ *
175
+ * @description:
176
+ * A macro used in `#include` statements to name the file containing the
177
+ * base FreeType~2 API.
178
+ *
179
+ */
180
+ #define FT_FREETYPE_H <freetype/freetype.h>
181
+
182
+
183
+ /**************************************************************************
184
+ *
185
+ * @macro:
186
+ * FT_ERRORS_H
187
+ *
188
+ * @description:
189
+ * A macro used in `#include` statements to name the file containing the
190
+ * list of FreeType~2 error codes (and messages).
191
+ *
192
+ * It is included by @FT_FREETYPE_H.
193
+ *
194
+ */
195
+ #define FT_ERRORS_H <freetype/fterrors.h>
196
+
197
+
198
+ /**************************************************************************
199
+ *
200
+ * @macro:
201
+ * FT_MODULE_ERRORS_H
202
+ *
203
+ * @description:
204
+ * A macro used in `#include` statements to name the file containing the
205
+ * list of FreeType~2 module error offsets (and messages).
206
+ *
207
+ */
208
+ #define FT_MODULE_ERRORS_H <freetype/ftmoderr.h>
209
+
210
+
211
+ /**************************************************************************
212
+ *
213
+ * @macro:
214
+ * FT_SYSTEM_H
215
+ *
216
+ * @description:
217
+ * A macro used in `#include` statements to name the file containing the
218
+ * FreeType~2 interface to low-level operations (i.e., memory management
219
+ * and stream i/o).
220
+ *
221
+ * It is included by @FT_FREETYPE_H.
222
+ *
223
+ */
224
+ #define FT_SYSTEM_H <freetype/ftsystem.h>
225
+
226
+
227
+ /**************************************************************************
228
+ *
229
+ * @macro:
230
+ * FT_IMAGE_H
231
+ *
232
+ * @description:
233
+ * A macro used in `#include` statements to name the file containing type
234
+ * definitions related to glyph images (i.e., bitmaps, outlines,
235
+ * scan-converter parameters).
236
+ *
237
+ * It is included by @FT_FREETYPE_H.
238
+ *
239
+ */
240
+ #define FT_IMAGE_H <freetype/ftimage.h>
241
+
242
+
243
+ /**************************************************************************
244
+ *
245
+ * @macro:
246
+ * FT_TYPES_H
247
+ *
248
+ * @description:
249
+ * A macro used in `#include` statements to name the file containing the
250
+ * basic data types defined by FreeType~2.
251
+ *
252
+ * It is included by @FT_FREETYPE_H.
253
+ *
254
+ */
255
+ #define FT_TYPES_H <freetype/fttypes.h>
256
+
257
+
258
+ /**************************************************************************
259
+ *
260
+ * @macro:
261
+ * FT_LIST_H
262
+ *
263
+ * @description:
264
+ * A macro used in `#include` statements to name the file containing the
265
+ * list management API of FreeType~2.
266
+ *
267
+ * (Most applications will never need to include this file.)
268
+ *
269
+ */
270
+ #define FT_LIST_H <freetype/ftlist.h>
271
+
272
+
273
+ /**************************************************************************
274
+ *
275
+ * @macro:
276
+ * FT_OUTLINE_H
277
+ *
278
+ * @description:
279
+ * A macro used in `#include` statements to name the file containing the
280
+ * scalable outline management API of FreeType~2.
281
+ *
282
+ */
283
+ #define FT_OUTLINE_H <freetype/ftoutln.h>
284
+
285
+
286
+ /**************************************************************************
287
+ *
288
+ * @macro:
289
+ * FT_SIZES_H
290
+ *
291
+ * @description:
292
+ * A macro used in `#include` statements to name the file containing the
293
+ * API which manages multiple @FT_Size objects per face.
294
+ *
295
+ */
296
+ #define FT_SIZES_H <freetype/ftsizes.h>
297
+
298
+
299
+ /**************************************************************************
300
+ *
301
+ * @macro:
302
+ * FT_MODULE_H
303
+ *
304
+ * @description:
305
+ * A macro used in `#include` statements to name the file containing the
306
+ * module management API of FreeType~2.
307
+ *
308
+ */
309
+ #define FT_MODULE_H <freetype/ftmodapi.h>
310
+
311
+
312
+ /**************************************************************************
313
+ *
314
+ * @macro:
315
+ * FT_RENDER_H
316
+ *
317
+ * @description:
318
+ * A macro used in `#include` statements to name the file containing the
319
+ * renderer module management API of FreeType~2.
320
+ *
321
+ */
322
+ #define FT_RENDER_H <freetype/ftrender.h>
323
+
324
+
325
+ /**************************************************************************
326
+ *
327
+ * @macro:
328
+ * FT_DRIVER_H
329
+ *
330
+ * @description:
331
+ * A macro used in `#include` statements to name the file containing
332
+ * structures and macros related to the driver modules.
333
+ *
334
+ */
335
+ #define FT_DRIVER_H <freetype/ftdriver.h>
336
+
337
+
338
+ /**************************************************************************
339
+ *
340
+ * @macro:
341
+ * FT_AUTOHINTER_H
342
+ *
343
+ * @description:
344
+ * A macro used in `#include` statements to name the file containing
345
+ * structures and macros related to the auto-hinting module.
346
+ *
347
+ * Deprecated since version~2.9; use @FT_DRIVER_H instead.
348
+ *
349
+ */
350
+ #define FT_AUTOHINTER_H FT_DRIVER_H
351
+
352
+
353
+ /**************************************************************************
354
+ *
355
+ * @macro:
356
+ * FT_CFF_DRIVER_H
357
+ *
358
+ * @description:
359
+ * A macro used in `#include` statements to name the file containing
360
+ * structures and macros related to the CFF driver module.
361
+ *
362
+ * Deprecated since version~2.9; use @FT_DRIVER_H instead.
363
+ *
364
+ */
365
+ #define FT_CFF_DRIVER_H FT_DRIVER_H
366
+
367
+
368
+ /**************************************************************************
369
+ *
370
+ * @macro:
371
+ * FT_TRUETYPE_DRIVER_H
372
+ *
373
+ * @description:
374
+ * A macro used in `#include` statements to name the file containing
375
+ * structures and macros related to the TrueType driver module.
376
+ *
377
+ * Deprecated since version~2.9; use @FT_DRIVER_H instead.
378
+ *
379
+ */
380
+ #define FT_TRUETYPE_DRIVER_H FT_DRIVER_H
381
+
382
+
383
+ /**************************************************************************
384
+ *
385
+ * @macro:
386
+ * FT_PCF_DRIVER_H
387
+ *
388
+ * @description:
389
+ * A macro used in `#include` statements to name the file containing
390
+ * structures and macros related to the PCF driver module.
391
+ *
392
+ * Deprecated since version~2.9; use @FT_DRIVER_H instead.
393
+ *
394
+ */
395
+ #define FT_PCF_DRIVER_H FT_DRIVER_H
396
+
397
+
398
+ /**************************************************************************
399
+ *
400
+ * @macro:
401
+ * FT_TYPE1_TABLES_H
402
+ *
403
+ * @description:
404
+ * A macro used in `#include` statements to name the file containing the
405
+ * types and API specific to the Type~1 format.
406
+ *
407
+ */
408
+ #define FT_TYPE1_TABLES_H <freetype/t1tables.h>
409
+
410
+
411
+ /**************************************************************************
412
+ *
413
+ * @macro:
414
+ * FT_TRUETYPE_IDS_H
415
+ *
416
+ * @description:
417
+ * A macro used in `#include` statements to name the file containing the
418
+ * enumeration values which identify name strings, languages, encodings,
419
+ * etc. This file really contains a _large_ set of constant macro
420
+ * definitions, taken from the TrueType and OpenType specifications.
421
+ *
422
+ */
423
+ #define FT_TRUETYPE_IDS_H <freetype/ttnameid.h>
424
+
425
+
426
+ /**************************************************************************
427
+ *
428
+ * @macro:
429
+ * FT_TRUETYPE_TABLES_H
430
+ *
431
+ * @description:
432
+ * A macro used in `#include` statements to name the file containing the
433
+ * types and API specific to the TrueType (as well as OpenType) format.
434
+ *
435
+ */
436
+ #define FT_TRUETYPE_TABLES_H <freetype/tttables.h>
437
+
438
+
439
+ /**************************************************************************
440
+ *
441
+ * @macro:
442
+ * FT_TRUETYPE_TAGS_H
443
+ *
444
+ * @description:
445
+ * A macro used in `#include` statements to name the file containing the
446
+ * definitions of TrueType four-byte 'tags' which identify blocks in
447
+ * SFNT-based font formats (i.e., TrueType and OpenType).
448
+ *
449
+ */
450
+ #define FT_TRUETYPE_TAGS_H <freetype/tttags.h>
451
+
452
+
453
+ /**************************************************************************
454
+ *
455
+ * @macro:
456
+ * FT_BDF_H
457
+ *
458
+ * @description:
459
+ * A macro used in `#include` statements to name the file containing the
460
+ * definitions of an API which accesses BDF-specific strings from a face.
461
+ *
462
+ */
463
+ #define FT_BDF_H <freetype/ftbdf.h>
464
+
465
+
466
+ /**************************************************************************
467
+ *
468
+ * @macro:
469
+ * FT_CID_H
470
+ *
471
+ * @description:
472
+ * A macro used in `#include` statements to name the file containing the
473
+ * definitions of an API which access CID font information from a face.
474
+ *
475
+ */
476
+ #define FT_CID_H <freetype/ftcid.h>
477
+
478
+
479
+ /**************************************************************************
480
+ *
481
+ * @macro:
482
+ * FT_GZIP_H
483
+ *
484
+ * @description:
485
+ * A macro used in `#include` statements to name the file containing the
486
+ * definitions of an API which supports gzip-compressed files.
487
+ *
488
+ */
489
+ #define FT_GZIP_H <freetype/ftgzip.h>
490
+
491
+
492
+ /**************************************************************************
493
+ *
494
+ * @macro:
495
+ * FT_LZW_H
496
+ *
497
+ * @description:
498
+ * A macro used in `#include` statements to name the file containing the
499
+ * definitions of an API which supports LZW-compressed files.
500
+ *
501
+ */
502
+ #define FT_LZW_H <freetype/ftlzw.h>
503
+
504
+
505
+ /**************************************************************************
506
+ *
507
+ * @macro:
508
+ * FT_BZIP2_H
509
+ *
510
+ * @description:
511
+ * A macro used in `#include` statements to name the file containing the
512
+ * definitions of an API which supports bzip2-compressed files.
513
+ *
514
+ */
515
+ #define FT_BZIP2_H <freetype/ftbzip2.h>
516
+
517
+
518
+ /**************************************************************************
519
+ *
520
+ * @macro:
521
+ * FT_WINFONTS_H
522
+ *
523
+ * @description:
524
+ * A macro used in `#include` statements to name the file containing the
525
+ * definitions of an API which supports Windows FNT files.
526
+ *
527
+ */
528
+ #define FT_WINFONTS_H <freetype/ftwinfnt.h>
529
+
530
+
531
+ /**************************************************************************
532
+ *
533
+ * @macro:
534
+ * FT_GLYPH_H
535
+ *
536
+ * @description:
537
+ * A macro used in `#include` statements to name the file containing the
538
+ * API of the optional glyph management component.
539
+ *
540
+ */
541
+ #define FT_GLYPH_H <freetype/ftglyph.h>
542
+
543
+
544
+ /**************************************************************************
545
+ *
546
+ * @macro:
547
+ * FT_BITMAP_H
548
+ *
549
+ * @description:
550
+ * A macro used in `#include` statements to name the file containing the
551
+ * API of the optional bitmap conversion component.
552
+ *
553
+ */
554
+ #define FT_BITMAP_H <freetype/ftbitmap.h>
555
+
556
+
557
+ /**************************************************************************
558
+ *
559
+ * @macro:
560
+ * FT_BBOX_H
561
+ *
562
+ * @description:
563
+ * A macro used in `#include` statements to name the file containing the
564
+ * API of the optional exact bounding box computation routines.
565
+ *
566
+ */
567
+ #define FT_BBOX_H <freetype/ftbbox.h>
568
+
569
+
570
+ /**************************************************************************
571
+ *
572
+ * @macro:
573
+ * FT_CACHE_H
574
+ *
575
+ * @description:
576
+ * A macro used in `#include` statements to name the file containing the
577
+ * API of the optional FreeType~2 cache sub-system.
578
+ *
579
+ */
580
+ #define FT_CACHE_H <freetype/ftcache.h>
581
+
582
+
583
+ /**************************************************************************
584
+ *
585
+ * @macro:
586
+ * FT_MAC_H
587
+ *
588
+ * @description:
589
+ * A macro used in `#include` statements to name the file containing the
590
+ * Macintosh-specific FreeType~2 API. The latter is used to access fonts
591
+ * embedded in resource forks.
592
+ *
593
+ * This header file must be explicitly included by client applications
594
+ * compiled on the Mac (note that the base API still works though).
595
+ *
596
+ */
597
+ #define FT_MAC_H <freetype/ftmac.h>
598
+
599
+
600
+ /**************************************************************************
601
+ *
602
+ * @macro:
603
+ * FT_MULTIPLE_MASTERS_H
604
+ *
605
+ * @description:
606
+ * A macro used in `#include` statements to name the file containing the
607
+ * optional multiple-masters management API of FreeType~2.
608
+ *
609
+ */
610
+ #define FT_MULTIPLE_MASTERS_H <freetype/ftmm.h>
611
+
612
+
613
+ /**************************************************************************
614
+ *
615
+ * @macro:
616
+ * FT_SFNT_NAMES_H
617
+ *
618
+ * @description:
619
+ * A macro used in `#include` statements to name the file containing the
620
+ * optional FreeType~2 API which accesses embedded 'name' strings in
621
+ * SFNT-based font formats (i.e., TrueType and OpenType).
622
+ *
623
+ */
624
+ #define FT_SFNT_NAMES_H <freetype/ftsnames.h>
625
+
626
+
627
+ /**************************************************************************
628
+ *
629
+ * @macro:
630
+ * FT_OPENTYPE_VALIDATE_H
631
+ *
632
+ * @description:
633
+ * A macro used in `#include` statements to name the file containing the
634
+ * optional FreeType~2 API which validates OpenType tables ('BASE',
635
+ * 'GDEF', 'GPOS', 'GSUB', 'JSTF').
636
+ *
637
+ */
638
+ #define FT_OPENTYPE_VALIDATE_H <freetype/ftotval.h>
639
+
640
+
641
+ /**************************************************************************
642
+ *
643
+ * @macro:
644
+ * FT_GX_VALIDATE_H
645
+ *
646
+ * @description:
647
+ * A macro used in `#include` statements to name the file containing the
648
+ * optional FreeType~2 API which validates TrueTypeGX/AAT tables ('feat',
649
+ * 'mort', 'morx', 'bsln', 'just', 'kern', 'opbd', 'trak', 'prop').
650
+ *
651
+ */
652
+ #define FT_GX_VALIDATE_H <freetype/ftgxval.h>
653
+
654
+
655
+ /**************************************************************************
656
+ *
657
+ * @macro:
658
+ * FT_PFR_H
659
+ *
660
+ * @description:
661
+ * A macro used in `#include` statements to name the file containing the
662
+ * FreeType~2 API which accesses PFR-specific data.
663
+ *
664
+ */
665
+ #define FT_PFR_H <freetype/ftpfr.h>
666
+
667
+
668
+ /**************************************************************************
669
+ *
670
+ * @macro:
671
+ * FT_STROKER_H
672
+ *
673
+ * @description:
674
+ * A macro used in `#include` statements to name the file containing the
675
+ * FreeType~2 API which provides functions to stroke outline paths.
676
+ */
677
+ #define FT_STROKER_H <freetype/ftstroke.h>
678
+
679
+
680
+ /**************************************************************************
681
+ *
682
+ * @macro:
683
+ * FT_SYNTHESIS_H
684
+ *
685
+ * @description:
686
+ * A macro used in `#include` statements to name the file containing the
687
+ * FreeType~2 API which performs artificial obliquing and emboldening.
688
+ */
689
+ #define FT_SYNTHESIS_H <freetype/ftsynth.h>
690
+
691
+
692
+ /**************************************************************************
693
+ *
694
+ * @macro:
695
+ * FT_FONT_FORMATS_H
696
+ *
697
+ * @description:
698
+ * A macro used in `#include` statements to name the file containing the
699
+ * FreeType~2 API which provides functions specific to font formats.
700
+ */
701
+ #define FT_FONT_FORMATS_H <freetype/ftfntfmt.h>
702
+
703
+ /* deprecated */
704
+ #define FT_XFREE86_H FT_FONT_FORMATS_H
705
+
706
+
707
+ /**************************************************************************
708
+ *
709
+ * @macro:
710
+ * FT_TRIGONOMETRY_H
711
+ *
712
+ * @description:
713
+ * A macro used in `#include` statements to name the file containing the
714
+ * FreeType~2 API which performs trigonometric computations (e.g.,
715
+ * cosines and arc tangents).
716
+ */
717
+ #define FT_TRIGONOMETRY_H <freetype/fttrigon.h>
718
+
719
+
720
+ /**************************************************************************
721
+ *
722
+ * @macro:
723
+ * FT_LCD_FILTER_H
724
+ *
725
+ * @description:
726
+ * A macro used in `#include` statements to name the file containing the
727
+ * FreeType~2 API which performs color filtering for subpixel rendering.
728
+ */
729
+ #define FT_LCD_FILTER_H <freetype/ftlcdfil.h>
730
+
731
+
732
+ /**************************************************************************
733
+ *
734
+ * @macro:
735
+ * FT_INCREMENTAL_H
736
+ *
737
+ * @description:
738
+ * A macro used in `#include` statements to name the file containing the
739
+ * FreeType~2 API which performs incremental glyph loading.
740
+ */
741
+ #define FT_INCREMENTAL_H <freetype/ftincrem.h>
742
+
743
+
744
+ /**************************************************************************
745
+ *
746
+ * @macro:
747
+ * FT_GASP_H
748
+ *
749
+ * @description:
750
+ * A macro used in `#include` statements to name the file containing the
751
+ * FreeType~2 API which returns entries from the TrueType GASP table.
752
+ */
753
+ #define FT_GASP_H <freetype/ftgasp.h>
754
+
755
+
756
+ /**************************************************************************
757
+ *
758
+ * @macro:
759
+ * FT_ADVANCES_H
760
+ *
761
+ * @description:
762
+ * A macro used in `#include` statements to name the file containing the
763
+ * FreeType~2 API which returns individual and ranged glyph advances.
764
+ */
765
+ #define FT_ADVANCES_H <freetype/ftadvanc.h>
766
+
767
+
768
+ /**************************************************************************
769
+ *
770
+ * @macro:
771
+ * FT_COLOR_H
772
+ *
773
+ * @description:
774
+ * A macro used in `#include` statements to name the file containing the
775
+ * FreeType~2 API which handles the OpenType 'CPAL' table.
776
+ */
777
+ #define FT_COLOR_H <freetype/ftcolor.h>
778
+
779
+
780
+ /* */
781
+
782
+ /* These header files don't need to be included by the user. */
783
+ #define FT_ERROR_DEFINITIONS_H <freetype/fterrdef.h>
784
+ #define FT_PARAMETER_TAGS_H <freetype/ftparams.h>
785
+
786
+ /* Deprecated macros. */
787
+ #define FT_UNPATENTED_HINTING_H <freetype/ftparams.h>
788
+ #define FT_TRUETYPE_UNPATENTED_H <freetype/ftparams.h>
789
+
790
+ /* `FT_CACHE_H` is the only header file needed for the cache subsystem. */
791
+ #define FT_CACHE_IMAGE_H FT_CACHE_H
792
+ #define FT_CACHE_SMALL_BITMAPS_H FT_CACHE_H
793
+ #define FT_CACHE_CHARMAP_H FT_CACHE_H
794
+
795
+ /* The internals of the cache sub-system are no longer exposed. We */
796
+ /* default to `FT_CACHE_H` at the moment just in case, but we know */
797
+ /* of no rogue client that uses them. */
798
+ /* */
799
+ #define FT_CACHE_MANAGER_H FT_CACHE_H
800
+ #define FT_CACHE_INTERNAL_MRU_H FT_CACHE_H
801
+ #define FT_CACHE_INTERNAL_MANAGER_H FT_CACHE_H
802
+ #define FT_CACHE_INTERNAL_CACHE_H FT_CACHE_H
803
+ #define FT_CACHE_INTERNAL_GLYPH_H FT_CACHE_H
804
+ #define FT_CACHE_INTERNAL_IMAGE_H FT_CACHE_H
805
+ #define FT_CACHE_INTERNAL_SBITS_H FT_CACHE_H
806
+
807
+ /* TODO(david): Move this section below to a different header */
808
+ #ifdef FT2_BUILD_LIBRARY
809
+ #if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */
810
+
811
+ /* We disable the warning `conditional expression is constant' here */
812
+ /* in order to compile cleanly with the maximum level of warnings. */
813
+ /* In particular, the warning complains about stuff like `while(0)' */
814
+ /* which is very useful in macro definitions. There is no benefit */
815
+ /* in having it enabled. */
816
+ #pragma warning( disable : 4127 )
817
+
818
+ #endif /* _MSC_VER */
819
+ #endif /* FT2_BUILD_LIBRARY */
820
+
821
+ #endif /* FTHEADER_H_ */
822
+
823
+
824
+ /* END */