Edit

kc3-lang/freetype/src/cff/cff.c

Branch :

  • Show log

    Commit

  • Author : Ewald Hew
    Date : 2017-09-25 09:25:55
    Hash : 62f095f0
    Message : [psaux, cff] Move Adobe's engine components into `psaux' module. This is the first patch of a sequence to move the Type 2 charstring processing capability from the `cff' module to the `psaux' module. NOTE: Does not compile! * src/cff/cf2*: Move these files to... * src/psaux/cf2*: Here. * src/cff/Jamfile (_sources), src/cff/rules.mk (CFF_DRV_SRC, CFF_DRV_H), src/cff/cff.c, src/cff/cffgload.c: Remove file references. * src/psaux/Jamfile (_sources), src/psaux/rules.mk, src/psaux/psaux.c (PSAUX_DRV_SRC, PSAUX_DRV_H): Add file references.

  • src/cff/cff.c
  • /***************************************************************************/
    /*                                                                         */
    /*  cff.c                                                                  */
    /*                                                                         */
    /*    FreeType OpenType driver component (body only).                      */
    /*                                                                         */
    /*  Copyright 1996-2017 by                                                 */
    /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
    /*                                                                         */
    /*  This file is part of the FreeType project, and may only be used,       */
    /*  modified, and distributed under the terms of the FreeType project      */
    /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
    /*  this file you indicate that you have read the license and              */
    /*  understand and accept it fully.                                        */
    /*                                                                         */
    /***************************************************************************/
    
    
    #define FT_MAKE_OPTION_SINGLE_OBJECT
    #include <ft2build.h>
    
    #include "cffcmap.c"
    #include "cffdrivr.c"
    #include "cffgload.c"
    #include "cffparse.c"
    #include "cffpic.c"
    #include "cffload.c"
    #include "cffobjs.c"
    
    /* END */