Hash :
8cd89073
        
        Author :
  
        
        Date :
2002-05-04T18:02:59
        
      
        * src/truetype/ttgload.c (TT_Load_Glyph): finally fixing the last
          bug that prevented FreeType 2.x and FreeType 1.x to produce
          bit-by-bit identical monochrome glyph bitmaps with native TrueType
          hinting. The culprit was a single-bit flag that wasn't set
          correctly by the TrueType glyph loader !!
        * src/otlayout/otlayout.h,
          src/otlayout/otlbase.c,
          src/otlayout/otlbase.h,
          src/otlayout/otlconf.h,
          src/otlayout/otlgdef.c,
          src/otlayout/otlgdef.h,
          src/otlayout/otlgpos.c,
          src/otlayout/otlgpos.h,
          src/otlayout/otlgsub.c,
          src/otlayout/otlgsub.h,
          src/otlayout/otljstf.c,
          src/otlayout/otljstf.h,
          src/otlayout/otltable.c,
          src/otlayout/otltable.h,
          src/otlayout/otltags.h:
            adding OpenType Layout source files. Module is still incomplete
      
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
#ifndef __OTL_TABLE_H__
#define __OTL_TABLE_H__
#include "otlayout.h"
OTL_BEGIN_HEADER
  typedef struct OTL_TableRec_*    OTL_Table;
  typedef enum
  {
    OTL_TABLE_TYPE_GDEF = 1,
    OTL_TABLE_TYPE_GSUB,
    OTL_TABLE_TYPE_GPOS,
    OTL_TABLE_TYPE_BASE,
    OTL_TABLE_TYPE_JSTF
  } OTL_TableType;
 /* this may become a private structure later */
  typedef struct OTL_TableRec_
  {
    OTL_TableType  type;
    OTL_Bytes      base;
    OTL_Bytes      limit;
    OTL_Tag        script_tag;
    OTL_Tag        lang_tag;
    OTL_UInt       lookup_count;
    OTL_Byte*      lookup_flags;
    OTL_UInt       feature_count;
    OTL_Tag        feature_tags;
    OTL_Byte*      feature_flags;
  } OTL_TableRec;
  OTL_API( OTL_Error )
  otl_table_validate( OTL_Bytes      table,
                      OTL_Size       size,
                      OTL_TableType  type,
                      OTL_Size      *abyte_size );
  OTL_API( void )
  otl_table_init( OTL_Table      table,
                  OTL_TableType  type,
                  OTL_Bytes      base,
                  OTL_Size       size );
  OTL_API( void )
  otl_table_set_script( OTL_Table      table,
                        OTL_ScriptTag  script,
                        OTL_LangTag    language );
OTL_END_HEADER
#endif /* __OTL_TABLE_H__ */