ReactOS 0.4.15-dev-7924-g5949c20
ttkern.c File Reference
#include <ft2build.h>
#include "ttkern.h"
#include "sferrors.h"
Include dependency graph for ttkern.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define FT_COMPONENT   trace_ttkern
 
#define TT_KERN_INDEX(g1, g2)   ( ( (FT_ULong)(g1) << 16 ) | (g2) )
 

Functions

 tt_face_load_kern (TT_Face face, FT_Stream stream)
 
 tt_face_done_kern (TT_Face face)
 
 tt_face_get_kerning (TT_Face face, FT_UInt left_glyph, FT_UInt right_glyph)
 

Macro Definition Documentation

◆ FT_COMPONENT

#define FT_COMPONENT   trace_ttkern

Definition at line 36 of file ttkern.c.

◆ TT_KERN_INDEX

#define TT_KERN_INDEX (   g1,
  g2 
)    ( ( (FT_ULong)(g1) << 16 ) | (g2) )

Definition at line 40 of file ttkern.c.

Function Documentation

◆ tt_face_done_kern()

tt_face_done_kern ( TT_Face  face)

Definition at line 173 of file ttkern.c.

174 {
175 FT_Stream stream = face->root.stream;
176
177
178 FT_FRAME_RELEASE( face->kern_table );
179 face->kern_table_size = 0;
180 face->num_kern_tables = 0;
181 face->kern_avail_bits = 0;
182 face->kern_order_bits = 0;
183 }
#define FT_FRAME_RELEASE(bytes)
Definition: ftstream.h:526
GLenum GLuint GLint GLenum face
Definition: glext.h:7025
Definition: parse.h:23

Referenced by sfnt_done_face().

◆ tt_face_get_kerning()

tt_face_get_kerning ( TT_Face  face,
FT_UInt  left_glyph,
FT_UInt  right_glyph 
)

Definition at line 187 of file ttkern.c.

190 {
191 FT_Int result = 0;
193 FT_Byte* p = face->kern_table;
194 FT_Byte* p_limit = p + face->kern_table_size;
195
196
197 p += 4;
198 mask = 0x0001;
199
200 for ( count = face->num_kern_tables;
201 count > 0 && p + 6 <= p_limit;
202 count--, mask <<= 1 )
203 {
204 FT_Byte* base = p;
205 FT_Byte* next;
208 FT_UInt coverage = FT_NEXT_USHORT( p );
209 FT_UInt num_pairs;
210 FT_Int value = 0;
211
213
214
215 next = base + length;
216
217 if ( next > p_limit ) /* handle broken table */
218 next = p_limit;
219
220 if ( ( face->kern_avail_bits & mask ) == 0 )
221 goto NextTable;
222
223 FT_ASSERT( p + 8 <= next ); /* tested in tt_face_load_kern */
224
225 num_pairs = FT_NEXT_USHORT( p );
226 p += 6;
227
228 if ( ( next - p ) < 6 * (int)num_pairs ) /* handle broken count */
229 num_pairs = (FT_UInt)( ( next - p ) / 6 );
230
231 switch ( coverage >> 8 )
232 {
233 case 0:
234 {
236
237
238 if ( face->kern_order_bits & mask ) /* binary search */
239 {
240 FT_UInt min = 0;
241 FT_UInt max = num_pairs;
242
243
244 while ( min < max )
245 {
246 FT_UInt mid = ( min + max ) >> 1;
247 FT_Byte* q = p + 6 * mid;
249
250
251 key = FT_NEXT_ULONG( q );
252
253 if ( key == key0 )
254 {
255 value = FT_PEEK_SHORT( q );
256 goto Found;
257 }
258 if ( key < key0 )
259 min = mid + 1;
260 else
261 max = mid;
262 }
263 }
264 else /* linear search */
265 {
266 FT_UInt count2;
267
268
269 for ( count2 = num_pairs; count2 > 0; count2-- )
270 {
272
273
274 if ( key == key0 )
275 {
276 value = FT_PEEK_SHORT( p );
277 goto Found;
278 }
279 p += 2;
280 }
281 }
282 }
283 break;
284
285 /*
286 * We don't support format 2 because we haven't seen a single font
287 * using it in real life...
288 */
289
290 default:
291 ;
292 }
293
294 goto NextTable;
295
296 Found:
297 if ( coverage & 8 ) /* override or add */
298 result = value;
299 else
300 result += value;
301
302 NextTable:
303 p = next;
304 }
305
306 return result;
307 }
return Found
Definition: dirsup.c:1270
static const WCHAR version[]
Definition: asmname.c:66
#define FT_UNUSED(arg)
Definition: ftconfig.h:101
#define FT_ASSERT(condition)
Definition: ftdebug.h:211
#define FT_NEXT_USHORT(buffer)
Definition: ftstream.h:226
#define FT_PEEK_SHORT(p)
Definition: ftstream.h:168
#define FT_NEXT_ULONG(buffer)
Definition: ftstream.h:238
unsigned long FT_ULong
Definition: fttypes.h:253
unsigned char FT_Byte
Definition: fttypes.h:154
unsigned int FT_UInt
Definition: fttypes.h:231
signed int FT_Int
Definition: fttypes.h:220
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLdouble GLdouble GLdouble GLdouble q
Definition: gl.h:2063
GLenum GLint GLuint mask
Definition: glext.h:6028
GLuint GLsizei GLsizei * length
Definition: glext.h:6040
GLfloat GLfloat p
Definition: glext.h:8902
GLuint64EXT * result
Definition: glext.h:11304
GLuint64EXT GLuint GLuint GLenum GLenum GLuint GLuint key0
Definition: glext.h:10608
#define min(a, b)
Definition: monoChain.cc:55
static unsigned __int64 next
Definition: rand_nt.c:6
Definition: copy.c:22
#define max(a, b)
Definition: svc.c:63
FT_UInt left_glyph
Definition: ttdriver.c:201
FT_UInt FT_UInt right_glyph
Definition: ttdriver.c:202
#define TT_KERN_INDEX(g1, g2)
Definition: ttkern.c:40
Definition: pdh_main.c:94

◆ tt_face_load_kern()

tt_face_load_kern ( TT_Face  face,
FT_Stream  stream 
)

Definition at line 44 of file ttkern.c.

46 {
49 FT_Byte* p;
50 FT_Byte* p_limit;
51 FT_UInt nn, num_tables;
52 FT_UInt32 avail = 0, ordered = 0;
53
54
55 /* the kern table is optional; exit silently if it is missing */
56 error = face->goto_table( face, TTAG_kern, stream, &table_size );
57 if ( error )
58 goto Exit;
59
60 if ( table_size < 4 ) /* the case of a malformed table */
61 {
62 FT_ERROR(( "tt_face_load_kern:"
63 " kerning table is too small - ignored\n" ));
64 error = FT_THROW( Table_Missing );
65 goto Exit;
66 }
67
68 if ( FT_FRAME_EXTRACT( table_size, face->kern_table ) )
69 {
70 FT_ERROR(( "tt_face_load_kern:"
71 " could not extract kerning table\n" ));
72 goto Exit;
73 }
74
75 face->kern_table_size = table_size;
76
77 p = face->kern_table;
78 p_limit = p + table_size;
79
80 p += 2; /* skip version */
81 num_tables = FT_NEXT_USHORT( p );
82
83 if ( num_tables > 32 ) /* we only support up to 32 sub-tables */
84 num_tables = 32;
85
86 for ( nn = 0; nn < num_tables; nn++ )
87 {
88 FT_UInt num_pairs, length, coverage, format;
89 FT_Byte* p_next;
90 FT_UInt32 mask = (FT_UInt32)1UL << nn;
91
92
93 if ( p + 6 > p_limit )
94 break;
95
96 p_next = p;
97
98 p += 2; /* skip version */
100 coverage = FT_NEXT_USHORT( p );
101
102 if ( length <= 6 + 8 )
103 break;
104
105 p_next += length;
106
107 if ( p_next > p_limit ) /* handle broken table */
108 p_next = p_limit;
109
110 format = coverage >> 8;
111
112 /* we currently only support format 0 kerning tables */
113 if ( format != 0 )
114 goto NextTable;
115
116 /* only use horizontal kerning tables */
117 if ( ( coverage & 3U ) != 0x0001 ||
118 p + 8 > p_next )
119 goto NextTable;
120
121 num_pairs = FT_NEXT_USHORT( p );
122 p += 6;
123
124 if ( ( p_next - p ) < 6 * (int)num_pairs ) /* handle broken count */
125 num_pairs = (FT_UInt)( ( p_next - p ) / 6 );
126
127 avail |= mask;
128
129 /*
130 * Now check whether the pairs in this table are ordered.
131 * We then can use binary search.
132 */
133 if ( num_pairs > 0 )
134 {
136 FT_ULong old_pair;
137
138
139 old_pair = FT_NEXT_ULONG( p );
140 p += 2;
141
142 for ( count = num_pairs - 1; count > 0; count-- )
143 {
144 FT_UInt32 cur_pair;
145
146
147 cur_pair = FT_NEXT_ULONG( p );
148 if ( cur_pair <= old_pair )
149 break;
150
151 p += 2;
152 old_pair = cur_pair;
153 }
154
155 if ( count == 0 )
156 ordered |= mask;
157 }
158
159 NextTable:
160 p = p_next;
161 }
162
163 face->num_kern_tables = nn;
164 face->kern_avail_bits = avail;
165 face->kern_order_bits = ordered;
166
167 Exit:
168 return error;
169 }
static int avail
Definition: adh-main.c:39
#define FT_ERROR(varformat)
Definition: ftdebug.h:181
#define FT_THROW(e)
Definition: ftdebug.h:213
#define FT_FRAME_EXTRACT(size, bytes)
Definition: ftstream.h:520
int FT_Error
Definition: fttypes.h:300
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
#define error(str)
Definition: mkdosfs.c:1605
LOCAL int table_size
Definition: write.c:65
static void Exit(void)
Definition: sock.c:1330
#define TTAG_kern
Definition: tttags.h:72