~ubuntu-branches/ubuntu/hardy/libgdiplus/hardy

« back to all changes in this revision

Viewing changes to cairo/src/cairo-cff-subset.c

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2007-12-18 13:08:10 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20071218130810-hlmitxfddf6h511j
Tags: 1.2.6-1ubuntu1
* Sync with Debian:
  - debian/control:
    + Add lpia and sparc to the architectures. We support them.
    + Change Maintainer to Ubuntu Mono Team.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#define POSTSCRIPT_OP    0x0c15
59
59
#define PRIVATE_OP       0x0012
60
60
#define ROS_OP           0x0c1e
 
61
#define UNIQUEID_OP      0x000d
61
62
#define VERSION_OP       0x0000
62
63
#define WEIGHT_OP        0x0004
 
64
#define XUID_OP          0x000e
63
65
 
64
66
#define NUM_STD_STRINGS 391
65
67
 
894
896
    cff_dict_remove (font->top_dict, ENCODING_OP);
895
897
    cff_dict_remove (font->top_dict, PRIVATE_OP);
896
898
 
 
899
    /* Remove the unique identifier operators as the subsetted font is
 
900
     * not the same is the original font. */
 
901
    cff_dict_remove (font->top_dict, UNIQUEID_OP);
 
902
    cff_dict_remove (font->top_dict, XUID_OP);
 
903
 
897
904
fail:
898
905
    cff_index_fini (&index);
899
906