zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
t1driver.c
Go to the documentation of this file.
1 /***************************************************************************/
2 /* */
3 /* t1driver.c */
4 /* */
5 /* Type 1 driver interface (body). */
6 /* */
7 /* Copyright 1996-2004, 2006, 2007, 2009, 2011 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 
19 #include <ft2build.h>
20 #include "t1driver.h"
21 #include "t1gload.h"
22 #include "t1load.h"
23 
24 #include "t1errors.h"
25 
26 #ifndef T1_CONFIG_OPTION_NO_AFM
27 #include "t1afm.h"
28 #endif
29 
30 #include FT_INTERNAL_DEBUG_H
31 #include FT_INTERNAL_STREAM_H
32 
33 #include FT_SERVICE_MULTIPLE_MASTERS_H
34 #include FT_SERVICE_GLYPH_DICT_H
35 #include FT_SERVICE_XFREE86_NAME_H
36 #include FT_SERVICE_POSTSCRIPT_NAME_H
37 #include FT_SERVICE_POSTSCRIPT_CMAPS_H
38 #include FT_SERVICE_POSTSCRIPT_INFO_H
39 #include FT_SERVICE_KERNING_H
40 
41 
42  /*************************************************************************/
43  /* */
44  /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
45  /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
46  /* messages during execution. */
47  /* */
48 #undef FT_COMPONENT
49 #define FT_COMPONENT trace_t1driver
50 
51  /*
52  * GLYPH DICT SERVICE
53  *
54  */
55 
56  static FT_Error
58  FT_UInt glyph_index,
60  FT_UInt buffer_max )
61  {
62  FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
63 
64  return T1_Err_Ok;
65  }
66 
67 
68  static FT_UInt
70  FT_String* glyph_name )
71  {
72  FT_Int i;
73  FT_String* gname;
74 
75 
76  for ( i = 0; i < face->type1.num_glyphs; i++ )
77  {
78  gname = face->type1.glyph_names[i];
79 
80  if ( !ft_strcmp( glyph_name, gname ) )
81  return (FT_UInt)i;
82  }
83 
84  return 0;
85  }
86 
87 
88  static const FT_Service_GlyphDictRec t1_service_glyph_dict =
89  {
92  };
93 
94 
95  /*
96  * POSTSCRIPT NAME SERVICE
97  *
98  */
99 
100  static const char*
102  {
103  return (const char*) face->type1.font_name;
104  }
105 
106 
107  static const FT_Service_PsFontNameRec t1_service_ps_name =
108  {
110  };
111 
112 
113  /*
114  * MULTIPLE MASTERS SERVICE
115  *
116  */
117 
118 #ifndef T1_CONFIG_OPTION_NO_MM_SUPPORT
119  static const FT_Service_MultiMastersRec t1_service_multi_masters =
120  {
126  };
127 #endif
128 
129 
130  /*
131  * POSTSCRIPT INFO SERVICE
132  *
133  */
134 
135  static FT_Error
137  PS_FontInfoRec* afont_info )
138  {
139  *afont_info = ((T1_Face)face)->type1.font_info;
140 
141  return T1_Err_Ok;
142  }
143 
144 
145  static FT_Error
147  PS_FontExtraRec* afont_extra )
148  {
149  *afont_extra = ((T1_Face)face)->type1.font_extra;
150 
151  return T1_Err_Ok;
152  }
153 
154 
155  static FT_Int
157  {
158  FT_UNUSED( face );
159 
160  return 1;
161  }
162 
163 
164  static FT_Error
166  PS_PrivateRec* afont_private )
167  {
168  *afont_private = ((T1_Face)face)->type1.private_dict;
169 
170  return T1_Err_Ok;
171  }
172 
173 
174  static FT_Long
176  PS_Dict_Keys key,
177  FT_UInt idx,
178  void *value,
179  FT_Long value_len )
180  {
181  FT_Long retval = -1;
182  T1_Face t1face = (T1_Face)face;
183  T1_Font type1 = &t1face->type1;
184 
185 
186  switch ( key )
187  {
188  case PS_DICT_FONT_TYPE:
189  retval = sizeof ( type1->font_type );
190  if ( value && value_len >= retval )
191  *((FT_Byte *)value) = type1->font_type;
192  break;
193 
194  case PS_DICT_FONT_MATRIX:
195  if ( idx < sizeof ( type1->font_matrix ) /
196  sizeof ( type1->font_matrix.xx ) )
197  {
198  FT_Fixed val = 0;
199 
200 
201  retval = sizeof ( val );
202  if ( value && value_len >= retval )
203  {
204  switch ( idx )
205  {
206  case 0:
207  val = type1->font_matrix.xx;
208  break;
209  case 1:
210  val = type1->font_matrix.xy;
211  break;
212  case 2:
213  val = type1->font_matrix.yx;
214  break;
215  case 3:
216  val = type1->font_matrix.yy;
217  break;
218  }
219  *((FT_Fixed *)value) = val;
220  }
221  }
222  break;
223 
224  case PS_DICT_FONT_BBOX:
225  if ( idx < sizeof ( type1->font_bbox ) /
226  sizeof ( type1->font_bbox.xMin ) )
227  {
228  FT_Fixed val = 0;
229 
230 
231  retval = sizeof ( val );
232  if ( value && value_len >= retval )
233  {
234  switch ( idx )
235  {
236  case 0:
237  val = type1->font_bbox.xMin;
238  break;
239  case 1:
240  val = type1->font_bbox.yMin;
241  break;
242  case 2:
243  val = type1->font_bbox.xMax;
244  break;
245  case 3:
246  val = type1->font_bbox.yMax;
247  break;
248  }
249  *((FT_Fixed *)value) = val;
250  }
251  }
252  break;
253 
254  case PS_DICT_PAINT_TYPE:
255  retval = sizeof ( type1->paint_type );
256  if ( value && value_len >= retval )
257  *((FT_Byte *)value) = type1->paint_type;
258  break;
259 
260  case PS_DICT_FONT_NAME:
261  retval = ft_strlen( type1->font_name ) + 1;
262  if ( value && value_len >= retval )
263  ft_memcpy( value, (void *)( type1->font_name ), retval );
264  break;
265 
266  case PS_DICT_UNIQUE_ID:
267  retval = sizeof ( type1->private_dict.unique_id );
268  if ( value && value_len >= retval )
269  *((FT_Int *)value) = type1->private_dict.unique_id;
270  break;
271 
273  retval = sizeof ( type1->num_glyphs );
274  if ( value && value_len >= retval )
275  *((FT_Int *)value) = type1->num_glyphs;
276  break;
277 
279  if ( idx < (FT_UInt)type1->num_glyphs )
280  {
281  retval = ft_strlen( type1->glyph_names[idx] ) + 1;
282  if ( value && value_len >= retval )
283  {
284  ft_memcpy( value, (void *)( type1->glyph_names[idx] ), retval );
285  ((FT_Char *)value)[retval - 1] = (FT_Char)'\0';
286  }
287  }
288  break;
289 
290  case PS_DICT_CHAR_STRING:
291  if ( idx < (FT_UInt)type1->num_glyphs )
292  {
293  retval = type1->charstrings_len[idx] + 1;
294  if ( value && value_len >= retval )
295  {
296  ft_memcpy( value, (void *)( type1->charstrings[idx] ),
297  retval - 1 );
298  ((FT_Char *)value)[retval - 1] = (FT_Char)'\0';
299  }
300  }
301  break;
302 
304  retval = sizeof ( type1->encoding_type );
305  if ( value && value_len >= retval )
306  *((T1_EncodingType *)value) = type1->encoding_type;
307  break;
308 
310  if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY &&
311  idx < (FT_UInt)type1->encoding.num_chars )
312  {
313  retval = ft_strlen( type1->encoding.char_name[idx] ) + 1;
314  if ( value && value_len >= retval )
315  {
316  ft_memcpy( value, (void *)( type1->encoding.char_name[idx] ),
317  retval - 1 );
318  ((FT_Char *)value)[retval - 1] = (FT_Char)'\0';
319  }
320  }
321  break;
322 
323  case PS_DICT_NUM_SUBRS:
324  retval = sizeof ( type1->num_subrs );
325  if ( value && value_len >= retval )
326  *((FT_Int *)value) = type1->num_subrs;
327  break;
328 
329  case PS_DICT_SUBR:
330  if ( idx < (FT_UInt)type1->num_subrs )
331  {
332  retval = type1->subrs_len[idx] + 1;
333  if ( value && value_len >= retval )
334  {
335  ft_memcpy( value, (void *)( type1->subrs[idx] ), retval - 1 );
336  ((FT_Char *)value)[retval - 1] = (FT_Char)'\0';
337  }
338  }
339  break;
340 
341  case PS_DICT_STD_HW:
342  retval = sizeof ( type1->private_dict.standard_width[0] );
343  if ( value && value_len >= retval )
344  *((FT_UShort *)value) = type1->private_dict.standard_width[0];
345  break;
346 
347  case PS_DICT_STD_VW:
348  retval = sizeof ( type1->private_dict.standard_height[0] );
349  if ( value && value_len >= retval )
350  *((FT_UShort *)value) = type1->private_dict.standard_height[0];
351  break;
352 
354  retval = sizeof ( type1->private_dict.num_blue_values );
355  if ( value && value_len >= retval )
356  *((FT_Byte *)value) = type1->private_dict.num_blue_values;
357  break;
358 
359  case PS_DICT_BLUE_VALUE:
360  if ( idx < type1->private_dict.num_blue_values )
361  {
362  retval = sizeof ( type1->private_dict.blue_values[idx] );
363  if ( value && value_len >= retval )
364  *((FT_Short *)value) = type1->private_dict.blue_values[idx];
365  }
366  break;
367 
368  case PS_DICT_BLUE_SCALE:
369  retval = sizeof ( type1->private_dict.blue_scale );
370  if ( value && value_len >= retval )
371  *((FT_Fixed *)value) = type1->private_dict.blue_scale;
372  break;
373 
374  case PS_DICT_BLUE_FUZZ:
375  retval = sizeof ( type1->private_dict.blue_fuzz );
376  if ( value && value_len >= retval )
377  *((FT_Int *)value) = type1->private_dict.blue_fuzz;
378  break;
379 
380  case PS_DICT_BLUE_SHIFT:
381  retval = sizeof ( type1->private_dict.blue_shift );
382  if ( value && value_len >= retval )
383  *((FT_Int *)value) = type1->private_dict.blue_shift;
384  break;
385 
387  retval = sizeof ( type1->private_dict.num_other_blues );
388  if ( value && value_len >= retval )
389  *((FT_Byte *)value) = type1->private_dict.num_other_blues;
390  break;
391 
392  case PS_DICT_OTHER_BLUE:
393  if ( idx < type1->private_dict.num_other_blues )
394  {
395  retval = sizeof ( type1->private_dict.other_blues[idx] );
396  if ( value && value_len >= retval )
397  *((FT_Short *)value) = type1->private_dict.other_blues[idx];
398  }
399  break;
400 
402  retval = sizeof ( type1->private_dict.num_family_blues );
403  if ( value && value_len >= retval )
404  *((FT_Byte *)value) = type1->private_dict.num_family_blues;
405  break;
406 
407  case PS_DICT_FAMILY_BLUE:
408  if ( idx < type1->private_dict.num_family_blues )
409  {
410  retval = sizeof ( type1->private_dict.family_blues[idx] );
411  if ( value && value_len >= retval )
412  *((FT_Short *)value) = type1->private_dict.family_blues[idx];
413  }
414  break;
415 
417  retval = sizeof ( type1->private_dict.num_family_other_blues );
418  if ( value && value_len >= retval )
419  *((FT_Byte *)value) = type1->private_dict.num_family_other_blues;
420  break;
421 
423  if ( idx < type1->private_dict.num_family_other_blues )
424  {
425  retval = sizeof ( type1->private_dict.family_other_blues[idx] );
426  if ( value && value_len >= retval )
427  *((FT_Short *)value) = type1->private_dict.family_other_blues[idx];
428  }
429  break;
430 
432  retval = sizeof ( type1->private_dict.num_snap_widths );
433  if ( value && value_len >= retval )
434  *((FT_Byte *)value) = type1->private_dict.num_snap_widths;
435  break;
436 
437  case PS_DICT_STEM_SNAP_H:
438  if ( idx < type1->private_dict.num_snap_widths )
439  {
440  retval = sizeof ( type1->private_dict.snap_widths[idx] );
441  if ( value && value_len >= retval )
442  *((FT_Short *)value) = type1->private_dict.snap_widths[idx];
443  }
444  break;
445 
447  retval = sizeof ( type1->private_dict.num_snap_heights );
448  if ( value && value_len >= retval )
449  *((FT_Byte *)value) = type1->private_dict.num_snap_heights;
450  break;
451 
452  case PS_DICT_STEM_SNAP_V:
453  if ( idx < type1->private_dict.num_snap_heights )
454  {
455  retval = sizeof ( type1->private_dict.snap_heights[idx] );
456  if ( value && value_len >= retval )
457  *((FT_Short *)value) = type1->private_dict.snap_heights[idx];
458  }
459  break;
460 
461  case PS_DICT_RND_STEM_UP:
462  retval = sizeof ( type1->private_dict.round_stem_up );
463  if ( value && value_len >= retval )
464  *((FT_Bool *)value) = type1->private_dict.round_stem_up;
465  break;
466 
467  case PS_DICT_FORCE_BOLD:
468  retval = sizeof ( type1->private_dict.force_bold );
469  if ( value && value_len >= retval )
470  *((FT_Bool *)value) = type1->private_dict.force_bold;
471  break;
472 
473  case PS_DICT_MIN_FEATURE:
474  if ( idx < sizeof ( type1->private_dict.min_feature ) /
475  sizeof ( type1->private_dict.min_feature[0] ) )
476  {
477  retval = sizeof ( type1->private_dict.min_feature[idx] );
478  if ( value && value_len >= retval )
479  *((FT_Short *)value) = type1->private_dict.min_feature[idx];
480  }
481  break;
482 
483  case PS_DICT_LEN_IV:
484  retval = sizeof ( type1->private_dict.lenIV );
485  if ( value && value_len >= retval )
486  *((FT_Int *)value) = type1->private_dict.lenIV;
487  break;
488 
489  case PS_DICT_PASSWORD:
490  retval = sizeof ( type1->private_dict.password );
491  if ( value && value_len >= retval )
492  *((FT_Long *)value) = type1->private_dict.password;
493  break;
494 
496  retval = sizeof ( type1->private_dict.language_group );
497  if ( value && value_len >= retval )
498  *((FT_Long *)value) = type1->private_dict.language_group;
499  break;
500 
502  retval = sizeof ( type1->font_info.is_fixed_pitch );
503  if ( value && value_len >= retval )
504  *((FT_Bool *)value) = type1->font_info.is_fixed_pitch;
505  break;
506 
508  retval = sizeof ( type1->font_info.underline_position );
509  if ( value && value_len >= retval )
510  *((FT_Short *)value) = type1->font_info.underline_position;
511  break;
512 
514  retval = sizeof ( type1->font_info.underline_thickness );
515  if ( value && value_len >= retval )
516  *((FT_UShort *)value) = type1->font_info.underline_thickness;
517  break;
518 
519  case PS_DICT_FS_TYPE:
520  retval = sizeof ( type1->font_extra.fs_type );
521  if ( value && value_len >= retval )
522  *((FT_UShort *)value) = type1->font_extra.fs_type;
523  break;
524 
525  case PS_DICT_VERSION:
526  retval = ft_strlen( type1->font_info.version ) + 1;
527  if ( value && value_len >= retval )
528  ft_memcpy( value, (void *)( type1->font_info.version ), retval );
529  break;
530 
531  case PS_DICT_NOTICE:
532  retval = ft_strlen( type1->font_info.notice ) + 1;
533  if ( value && value_len >= retval )
534  ft_memcpy( value, (void *)( type1->font_info.notice ), retval );
535  break;
536 
537  case PS_DICT_FULL_NAME:
538  retval = ft_strlen( type1->font_info.full_name ) + 1;
539  if ( value && value_len >= retval )
540  ft_memcpy( value, (void *)( type1->font_info.full_name ), retval );
541  break;
542 
543  case PS_DICT_FAMILY_NAME:
544  retval = ft_strlen( type1->font_info.family_name ) + 1;
545  if ( value && value_len >= retval )
546  ft_memcpy( value, (void *)( type1->font_info.family_name ), retval );
547  break;
548 
549  case PS_DICT_WEIGHT:
550  retval = ft_strlen( type1->font_info.weight ) + 1;
551  if ( value && value_len >= retval )
552  ft_memcpy( value, (void *)( type1->font_info.weight ), retval );
553  break;
554 
556  retval = sizeof ( type1->font_info.italic_angle );
557  if ( value && value_len >= retval )
558  *((FT_Long *)value) = type1->font_info.italic_angle;
559  break;
560 
561  default:
562  break;
563  }
564 
565  return retval;
566  }
567 
568 
569  static const FT_Service_PsInfoRec t1_service_ps_info =
570  {
576  };
577 
578 
579 #ifndef T1_CONFIG_OPTION_NO_AFM
580  static const FT_Service_KerningRec t1_service_kerning =
581  {
583  };
584 #endif
585 
586 
587  /*
588  * SERVICE LIST
589  *
590  */
591 
593  {
597  { FT_SERVICE_ID_POSTSCRIPT_INFO, &t1_service_ps_info },
598 
599 #ifndef T1_CONFIG_OPTION_NO_AFM
600  { FT_SERVICE_ID_KERNING, &t1_service_kerning },
601 #endif
602 
603 #ifndef T1_CONFIG_OPTION_NO_MM_SUPPORT
604  { FT_SERVICE_ID_MULTI_MASTERS, &t1_service_multi_masters },
605 #endif
606  { NULL, NULL }
607  };
608 
609 
612  const FT_String* t1_interface )
613  {
614  FT_UNUSED( module );
615 
616  return ft_service_list_lookup( t1_services, t1_interface );
617  }
618 
619 
620 #ifndef T1_CONFIG_OPTION_NO_AFM
621 
622  /*************************************************************************/
623  /* */
624  /* <Function> */
625  /* Get_Kerning */
626  /* */
627  /* <Description> */
628  /* A driver method used to return the kerning vector between two */
629  /* glyphs of the same face. */
630  /* */
631  /* <Input> */
632  /* face :: A handle to the source face object. */
633  /* */
634  /* left_glyph :: The index of the left glyph in the kern pair. */
635  /* */
636  /* right_glyph :: The index of the right glyph in the kern pair. */
637  /* */
638  /* <Output> */
639  /* kerning :: The kerning vector. This is in font units for */
640  /* scalable formats, and in pixels for fixed-sizes */
641  /* formats. */
642  /* */
643  /* <Return> */
644  /* FreeType error code. 0 means success. */
645  /* */
646  /* <Note> */
647  /* Only horizontal layouts (left-to-right & right-to-left) are */
648  /* supported by this function. Other layouts, or more sophisticated */
649  /* kernings are out of scope of this method (the basic driver */
650  /* interface is meant to be simple). */
651  /* */
652  /* They can be implemented by format-specific interfaces. */
653  /* */
654  static FT_Error
655  Get_Kerning( FT_Face t1face, /* T1_Face */
656  FT_UInt left_glyph,
657  FT_UInt right_glyph,
658  FT_Vector* kerning )
659  {
660  T1_Face face = (T1_Face)t1face;
661 
662 
663  kerning->x = 0;
664  kerning->y = 0;
665 
666  if ( face->afm_data )
668  left_glyph,
669  right_glyph,
670  kerning );
671 
672  return T1_Err_Ok;
673  }
674 
675 
676 #endif /* T1_CONFIG_OPTION_NO_AFM */
677 
678 
681  {
682  {
686 
687  sizeof ( FT_DriverRec ),
688 
689  "type1",
690  0x10000L,
691  0x20000L,
692 
693  0, /* format interface */
694 
698  },
699 
700  sizeof ( T1_FaceRec ),
701  sizeof ( T1_SizeRec ),
702  sizeof ( T1_GlyphSlotRec ),
703 
704  T1_Face_Init,
705  T1_Face_Done,
706  T1_Size_Init,
707  T1_Size_Done,
710 
711 #ifdef FT_CONFIG_OPTION_OLD_INTERNALS
712  ft_stub_set_char_sizes,
713  ft_stub_set_pixel_sizes,
714 #endif
716 
717 #ifdef T1_CONFIG_OPTION_NO_AFM
718  0, /* FT_Face_GetKerningFunc */
719  0, /* FT_Face_AttachFunc */
720 #else
721  Get_Kerning,
723 #endif
726  0 /* FT_Size_SelectFunc */
727  };
728 
729 
730 /* END */
FT_UShort standard_width[1]
Definition: t1tables.h:138
FT_PtrDist * subrs_len
Definition: t1types.h:109
#define FT_SERVICE_ID_MULTI_MASTERS
Definition: svmm.h:35
FT_Byte num_blue_values
Definition: t1tables.h:123
ft_service_list_lookup(FT_ServiceDesc service_descriptors, const char *service_id)
Definition: ftobjs.c:47
int FT_Error
Definition: fttypes.h:296
GLuint const GLfloat * val
Definition: glew.h:2715
FT_Byte font_type
Definition: t1types.h:117
enum PS_Dict_Keys_ PS_Dict_Keys
signed long FT_Long
Definition: fttypes.h:238
T1_FontRec type1
Definition: t1types.h:201
struct T1_FaceRec_ * T1_Face
Definition: t1types.h:194
T1_Size_Done(FT_Size t1size)
Definition: t1objs.c:75
PS_PrivateRec private_dict
Definition: t1types.h:97
FT_SERVICE_ID_POSTSCRIPT_INFO
Definition: cffdrivr.c:581
#define FT_XF86_FORMAT_TYPE_1
Definition: svxf86nm.h:37
#define NULL
Definition: ftobjs.h:61
PS_FontExtraRec font_extra
Definition: t1types.h:96
FT_Fixed xy
Definition: fttypes.h:383
T1_Load_Glyph(FT_GlyphSlot t1glyph, FT_Size t1size, FT_UInt glyph_index, FT_Int32 load_flags)
Definition: t1gload.c:269
FT_Int unique_id
Definition: t1tables.h:120
signed int FT_Int
Definition: fttypes.h:216
struct T1_SizeRec_ T1_SizeRec
FT_Long(* PS_GetFontValueFunc)(FT_Face face, PS_Dict_Keys key, FT_UInt idx, void *value, FT_Long value_len)
Definition: svpsinfo.h:48
T1_GlyphSlot_Init(FT_GlyphSlot slot)
Definition: t1objs.c:152
FT_Short min_feature[2]
Definition: t1tables.h:154
FT_SERVICE_ID_GLYPH_DICT
Definition: cffdrivr.c:581
FT_Int num_glyphs
Definition: t1types.h:111
T1_Set_MM_Blend(T1_Face face, FT_UInt num_coords, FT_Fixed *coords)
Definition: t1load.c:366
Get_Interface(FT_Module module, const FT_String *t1_interface)
Definition: t1driver.c:611
T1_Face_Init(FT_Stream stream, FT_Face t1face, FT_Int face_index, FT_Int num_params, FT_Parameter *params)
Definition: t1objs.c:300
signed char FT_Char
Definition: fttypes.h:139
static const FT_Service_GlyphDictRec t1_service_glyph_dict
Definition: t1driver.c:88
static const FT_ServiceDescRec t1_services[]
Definition: t1driver.c:592
FT_Byte ** charstrings
Definition: t1types.h:113
FT_Error(* FT_Get_MM_Func)(FT_Face face, FT_Multi_Master *master)
Definition: svmm.h:39
FT_Short snap_widths[13]
Definition: t1tables.h:146
#define FT_MODULE_DRIVER_SCALABLE
Definition: ftmodapi.h:60
static const FT_Service_PsInfoRec t1_service_ps_info
Definition: t1driver.c:569
static const FT_Service_KerningRec t1_service_kerning
Definition: t1driver.c:580
static FT_Error t1_ps_get_font_extra(FT_Face face, PS_FontExtraRec *afont_extra)
Definition: t1driver.c:146
T1_Driver_Init(FT_Module driver)
Definition: t1objs.c:589
FT_Byte paint_type
Definition: t1types.h:116
FT_Int(* PS_HasGlyphNamesFunc)(FT_Face face)
Definition: svpsinfo.h:41
T1_Set_Var_Design(T1_Face face, FT_UInt num_coords, FT_Fixed *coords)
Definition: t1load.c:489
FT_UShort standard_height[1]
Definition: t1tables.h:139
FT_Byte num_family_blues
Definition: t1tables.h:125
static const FT_Service_PsFontNameRec t1_service_ps_name
Definition: t1driver.c:107
T1_Face_Done(FT_Face t1face)
Definition: t1objs.c:201
FT_BEGIN_HEADER typedef unsigned char FT_Bool
Definition: fttypes.h:104
FT_Error(* FT_GlyphDict_GetNameFunc)(FT_Face face, FT_UInt glyph_index, FT_Pointer buffer, FT_UInt buffer_max)
Definition: svgldict.h:38
FT_Error(* PS_GetFontExtraFunc)(FT_Face face, PS_FontExtraRec *afont_extra)
Definition: svpsinfo.h:37
FT_Bool force_bold
Definition: t1tables.h:143
FT_CALLBACK_TABLE_DEF const FT_Driver_ClassRec t1_driver_class
Definition: t1driver.c:680
unsigned char FT_Byte
Definition: fttypes.h:150
FT_Bool round_stem_up
Definition: t1tables.h:144
T1_Set_MM_Design(T1_Face face, FT_UInt num_coords, FT_Long *coords)
Definition: t1load.c:413
T1_Size_Init(FT_Size t1size)
Definition: t1objs.c:95
FT_Error(* PS_GetFontPrivateFunc)(FT_Face face, PS_PrivateRec *afont_private)
Definition: svpsinfo.h:44
EGLContext EGLenum EGLClientBuffer buffer
Definition: eglext.h:87
#define FT_MODULE_DRIVER_HAS_HINTER
Definition: ftmodapi.h:64
FT_Long password
Definition: t1tables.h:152
T1_Driver_Done(FT_Module driver)
Definition: t1objs.c:609
FT_Pos yMax
Definition: ftimage.h:119
FT_Pos xMin
Definition: ftimage.h:118
FT_String * font_name
Definition: t1types.h:98
FT_UInt(* FT_GlyphDict_NameIndexFunc)(FT_Face face, FT_String *glyph_name)
Definition: svgldict.h:44
static FT_Int t1_ps_has_glyph_names(FT_Face face)
Definition: t1driver.c:156
FT_UInt idx
Definition: cffcmap.c:125
static const FT_Service_MultiMastersRec t1_service_multi_masters
Definition: t1driver.c:119
FT_Pos x
Definition: ftimage.h:77
#define FT_SERVICE_ID_XF86_NAME
Definition: svxf86nm.h:34
FT_Error(* FT_Set_MM_Design_Func)(FT_Face face, FT_UInt num_coords, FT_Long *coords)
Definition: svmm.h:47
char FT_String
Definition: fttypes.h:183
void * FT_Pointer
Definition: fttypes.h:307
FT_Error(* PS_GetFontInfoFunc)(FT_Face face, PS_FontInfoRec *afont_info)
Definition: svpsinfo.h:33
FT_Error(* FT_Get_MM_Var_Func)(FT_Face face, FT_MM_Var **master)
Definition: svmm.h:43
GLenum face
Definition: gl2ext.h:1490
FT_Matrix font_matrix
Definition: t1types.h:118
FT_Byte num_snap_heights
Definition: t1tables.h:142
FT_Pos y
Definition: ftimage.h:78
FT_Pointer FT_Module_Interface
Definition: ftmodapi.h:79
FT_Int lenIV
Definition: t1tables.h:121
FT_PtrDist * charstrings_len
Definition: t1types.h:114
FT_Byte num_other_blues
Definition: t1tables.h:124
enum T1_EncodingType_ T1_EncodingType
FT_Int blue_shift
Definition: t1tables.h:135
FT_Byte ** subrs
Definition: t1types.h:108
static FT_Error t1_ps_get_font_info(FT_Face face, PS_FontInfoRec *afont_info)
Definition: t1driver.c:136
T1_Read_Metrics(FT_Face t1_face, FT_Stream stream)
Definition: t1afm.c:234
#define FT_CALLBACK_DEF(x)
Definition: ftconfig.h:554
FT_Error(* FT_Set_Var_Design_Func)(FT_Face face, FT_UInt num_coords, FT_Fixed *coords)
Definition: svmm.h:52
FT_Fixed blue_scale
Definition: t1tables.h:134
#define FT_MODULE_FONT_DRIVER
Definition: ftmodapi.h:55
FT_Pos xMax
Definition: ftimage.h:119
FT_SERVICE_ID_POSTSCRIPT_FONT_NAME
Definition: cffdrivr.c:581
PS_FontInfoRec font_info
Definition: t1types.h:95
signed short FT_Short
Definition: fttypes.h:194
const void * afm_data
Definition: t1types.h:204
T1_EncodingType encoding_type
Definition: t1types.h:100
FT_Fixed xx
Definition: fttypes.h:383
static FT_UInt t1_get_name_index(T1_Face face, FT_String *glyph_name)
Definition: t1driver.c:69
#define FT_SERVICE_ID_KERNING
Definition: svkern.h:28
static FT_Error Get_Kerning(FT_Face t1face, FT_UInt left_glyph, FT_UInt right_glyph, FT_Vector *kerning)
Definition: t1driver.c:655
FT_BBox font_bbox
Definition: t1types.h:120
EGLSurface EGLint void ** value
Definition: eglext.h:301
#define const
Definition: zconf.h:91
FT_Int num_subrs
Definition: t1types.h:107
FT_Fixed yx
Definition: fttypes.h:384
FT_Short family_blues[14]
Definition: t1tables.h:131
static FT_Error t1_ps_get_font_private(FT_Face face, PS_PrivateRec *afont_private)
Definition: t1driver.c:165
signed long FT_Fixed
Definition: fttypes.h:284
FT_Short other_blues[10]
Definition: t1tables.h:129
unsigned int FT_UInt
Definition: fttypes.h:227
T1_Get_MM_Var(T1_Face face, FT_MM_Var **master)
Definition: t1load.c:301
T1_Size_Request(FT_Size t1size, FT_Size_Request req)
Definition: t1objs.c:119
FT_Short snap_heights[13]
Definition: t1tables.h:147
T1_Get_Advances(FT_Face t1face, FT_UInt first, FT_UInt count, FT_Int32 load_flags, FT_Fixed *advances)
Definition: t1gload.c:211
FT_Long language_group
Definition: t1tables.h:151
FT_UShort fs_type
Definition: t1types.h:88
FT_BEGIN_HEADER struct PS_FontInfoRec_ PS_FontInfoRec
FT_Byte num_family_other_blues
Definition: t1tables.h:126
FT_Fixed yy
Definition: fttypes.h:384
T1_GlyphSlot_Done(FT_GlyphSlot slot)
Definition: t1objs.c:145
const char *(* FT_PsName_GetFunc)(FT_Face face)
Definition: svpostnm.h:41
static FT_Long t1_ps_get_font_value(FT_Face face, PS_Dict_Keys key, FT_UInt idx, void *value, FT_Long value_len)
Definition: t1driver.c:175
int i
Definition: pngrutil.c:1377
struct FT_DriverRec_ FT_DriverRec
FT_Short blue_values[14]
Definition: t1tables.h:128
#define FT_STRCPYN(dst, src, size)
Definition: ftmemory.h:369
T1_EncodingRec encoding
Definition: t1types.h:101
FT_Short family_other_blues[10]
Definition: t1tables.h:132
T1_Get_Track_Kerning(FT_Face face, FT_Fixed ptsize, FT_Int degree, FT_Fixed *kerning)
Definition: t1afm.c:359
T1_Get_Multi_Master(T1_Face face, FT_Multi_Master *master)
Definition: t1load.c:184
unsigned short FT_UShort
Definition: fttypes.h:205
T1_Get_Kerning(AFM_FontInfo fi, FT_UInt glyph1, FT_UInt glyph2, FT_Vector *kerning)
Definition: t1afm.c:318
FT_Pos yMin
Definition: ftimage.h:118
FT_Error(* FT_Set_MM_Blend_Func)(FT_Face face, FT_UInt num_coords, FT_Long *coords)
Definition: svmm.h:57
#define ft_memcpy
Definition: ftstdlib.h:81
static FT_Error t1_get_glyph_name(T1_Face face, FT_UInt glyph_index, FT_Pointer buffer, FT_UInt buffer_max)
Definition: t1driver.c:57
#define FT_UNUSED(arg)
Definition: ftconfig.h:101
FT_Byte num_snap_widths
Definition: t1tables.h:141
static const char * t1_get_ps_name(T1_Face face)
Definition: t1driver.c:101
#define ft_strlen
Definition: ftstdlib.h:87
FT_Int blue_fuzz
Definition: t1tables.h:136
#define FT_CALLBACK_TABLE_DEF
Definition: ftconfig.h:564
#define ft_strcmp
Definition: ftstdlib.h:85
FT_String ** glyph_names
Definition: t1types.h:112