~ubuntu-branches/ubuntu/precise/cairo/precise-proposed

« back to all changes in this revision

Viewing changes to src/cairo-type1-fallback.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-01-03 16:47:46 UTC
  • mfrom: (28.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110103164746-2arbsh0o4defgd8u
Tags: 1.10.2-1ubuntu1
* Resynchronize on Debian, the remaining delta for ubuntu is:
* debian/patches/server_side_gradients.patch:
  - don't use server side gradients, most drivers don't handle those and are
    really slow, should workaround performances issues for ati and nouveau
* debian/patches/cairo-lp-680628.patch: 
  - git backport to fix pdf printing speed issues (LP #680628).
* debian/libcairo2.symbols:
  Fix build failure with -flto (adding optional symbol).

Show diffs side-by-side

added added

removed removed

Lines of Context:
755
755
    len = snprintf(type1_subset->data + font->bbox_position,
756
756
                   font->bbox_max_chars,
757
757
                   "%d %d %d %d",
758
 
                   (int)type1_subset->x_min,
759
 
                   (int)type1_subset->y_min,
760
 
                   (int)type1_subset->x_max,
761
 
                   (int)type1_subset->y_max);
 
758
                   (int)font->x_min,
 
759
                   (int)font->y_min,
 
760
                   (int)font->x_max,
 
761
                   (int)font->y_max);
762
762
    type1_subset->data[font->bbox_position + len] = ' ';
763
763
 
764
764
    type1_subset->header_length = font->header_size;