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

« back to all changes in this revision

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

  • 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:
609
609
{
610
610
    cairo_paginated_surface_t *surface = abstract_surface;
611
611
 
612
 
    return _cairo_surface_has_show_text_glyphs (surface->target);
 
612
    return cairo_surface_has_show_text_glyphs (surface->target);
613
613
}
614
614
 
615
615
static cairo_int_status_t
622
622
                                          int                        num_glyphs,
623
623
                                          const cairo_text_cluster_t *clusters,
624
624
                                          int                        num_clusters,
625
 
                                          cairo_bool_t               backward,
 
625
                                          cairo_text_cluster_flags_t cluster_flags,
626
626
                                          cairo_scaled_font_t       *scaled_font)
627
627
{
628
628
    cairo_paginated_surface_t *surface = abstract_surface;
649
649
                                              utf8, utf8_len,
650
650
                                              glyphs, num_glyphs,
651
651
                                              clusters, num_clusters,
652
 
                                              backward,
 
652
                                              cluster_flags,
653
653
                                              scaled_font);
654
654
    CAIRO_MUTEX_LOCK (scaled_font->mutex);
655
655