~ubuntu-branches/ubuntu/intrepid/cairo/intrepid-updates

« back to all changes in this revision

Viewing changes to src/cairo-type1-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-09-25 16:22:33 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20080925162233-btx61ymk181i7mcc
Tags: 1.7.6-0ubuntu1
* New upstream version. Most noticable changes are:
  - some API changes with especially the removal of
    cairo_font_options_set_lcd_filter and cairo_font_options_get_lcd_filter
  - xlib: Faster bookkeeping
  - PS: Fix gradients with non-constant alpha
  - Fix deadlock in user-font code
* debian/patches/00list: Remove 03_from_git_fix_lcd_filter_default.dpatch,
  add debian/patches/03_fix_ftbfs_withing_xcb.dpatch
* debian/libcairo2.symbols, debian/libcairo-directfb2.symbols: update
  list of symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#ifndef CAIRO_TYPE1_PRIVATE_H
37
37
#define CAIRO_TYPE1_PRIVATE_H
38
38
 
 
39
#include "cairoint.h"
 
40
 
 
41
#if CAIRO_HAS_FONT_SUBSET
 
42
 
39
43
/* Magic constants for the type1 eexec encryption */
40
44
#define CAIRO_TYPE1_ENCRYPT_C1          ((unsigned short) 52845)
41
45
#define CAIRO_TYPE1_ENCRYPT_C2          ((unsigned short) 22719)
42
46
#define CAIRO_TYPE1_PRIVATE_DICT_KEY    ((unsigned short) 55665)
43
47
#define CAIRO_TYPE1_CHARSTRING_KEY      ((unsigned short) 4330)
44
48
 
 
49
#endif /* CAIRO_HAS_FONT_SUBSET */
 
50
 
45
51
#endif /* CAIRO_TYPE1_PRIVATE_H */