~ubuntu-branches/ubuntu/lucid/cairo/lucid

« back to all changes in this revision

Viewing changes to src/cairo-ps-surface.c

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-05-09 15:02:48 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080509150248-lc6ktay0m309ld73
Tags: 1.6.4-1ubuntu1
* Drop buggy_repeat band-aid now that xorg-server fixes the issue
  directly (LP: #186186)
* Merge from debian unstable (1.6.4-1). Remaining ubuntu changes:
  - debian/control:
    - Maintainer: Ubuntu Core Developers <ubuntu-devel-discuss@lists.ubuntu.com>
    - Build-depends and Depends: libfontconfig1-dev >= 2.5.0-2ubuntu2 and
      libfreetype6-dev >= 2.3.5-1ubuntu4
  - debian/rules:
    - Pass -c4 to dpkg-gensymbols
  - debian/patches/02-lcd_filter_freedesktop_bug10301.dpatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
                                 "    { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse\n"
184
184
                                 "  } forall\n"
185
185
                                 "} bind def\n"
186
 
                                 "/Td { matrix translate cairo_font_matrix matrix concatmatrix dup\n"
187
 
                                 "   /cairo_font_matrix exch def cairo_font exch selectfont 0 0 moveto } bind def\n"
188
 
                                 "/Tm { 6 array astore dup /cairo_font_matrix exch def\n"
189
 
                                 "      cairo_font exch selectfont 0 0 moveto } bind def\n"
 
186
                                 "/Td { matrix translate cairo_font_matrix matrix concatmatrix aload\n"
 
187
                                 "      /cairo_font_matrix exch def 6 2 roll 0 0 6 array astore\n"
 
188
                                 "      cairo_font exch selectfont moveto } bind def\n"
 
189
                                 "/Tm { 6 copy 6 array astore /cairo_font_matrix exch def 6 2 roll 0 0\n"
 
190
                                 "      6 array astore cairo_font exch selectfont moveto } bind def\n"
190
191
                                 "/g { setgray } bind def\n"
191
192
                                 "/rg { setrgbcolor } bind def\n");
192
193