mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-19 11:08:10 +02:00
Handling clip as part of the surface state, as opposed to being part of the operation state, is cumbersome and a hindrance to providing true proxy surface support. For example, the clip must be copied from the surface onto the fallback image, but this was forgotten causing undue hassle in each backend. Another example is the contortion the meta surface endures to ensure the clip is correctly recorded. By contrast passing the clip along with the operation is quite simple and enables us to write generic handlers for providing surface wrappers. (And in the future, we should be able to write more esoteric wrappers, e.g. automatic 2x FSAA, trivially.) In brief, instead of the surface automatically applying the clip before calling the backend, the backend can call into a generic helper to apply clipping. For raster surfaces, clip regions are handled automatically as part of the composite interface. For vector surfaces, a clip helper is introduced to replay and callback into an intersect_clip_path() function as necessary. Whilst this is not primarily a performance related change (the change should just move the computation of the clip from the moment it is applied by the user to the moment it is required by the backend), it is important to track any potential regression: ppc: Speedups ======== image-rgba evolution-20090607-0 1026085.22 0.18% -> 672972.07 0.77%: 1.52x speedup ▌ image-rgba evolution-20090618-0 680579.98 0.12% -> 573237.66 0.16%: 1.19x speedup ▎ image-rgba swfdec-fill-rate-4xaa-0 460296.92 0.36% -> 407464.63 0.42%: 1.13x speedup ▏ image-rgba swfdec-fill-rate-2xaa-0 128431.95 0.47% -> 115051.86 0.42%: 1.12x speedup ▏ Slowdowns ========= image-rgba firefox-periodic-table-0 56837.61 0.78% -> 66055.17 3.20%: 1.09x slowdown ▏
108 lines
3.5 KiB
C
108 lines
3.5 KiB
C
/* -*- Mode: c; tab-width: 8; c-basic-offset: 4; indent-tabs-mode: t; -*- */
|
|
/* cairo - a vector graphics library with display and print output
|
|
*
|
|
* Copyright © 2003 University of Southern California
|
|
* Copyright © 2005 Red Hat, Inc
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it either under the terms of the GNU Lesser General Public
|
|
* License version 2.1 as published by the Free Software Foundation
|
|
* (the "LGPL") or, at your option, under the terms of the Mozilla
|
|
* Public License Version 1.1 (the "MPL"). If you do not alter this
|
|
* notice, a recipient may use your version of this file under either
|
|
* the MPL or the LGPL.
|
|
*
|
|
* You should have received a copy of the LGPL along with this library
|
|
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
* You should have received a copy of the MPL along with this library
|
|
* in the file COPYING-MPL-1.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
|
|
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
|
|
* the specific language governing rights and limitations.
|
|
*
|
|
* The Original Code is the cairo graphics library.
|
|
*
|
|
* The Initial Developer of the Original Code is University of Southern
|
|
* California.
|
|
*
|
|
* Contributor(s):
|
|
* Carl D. Worth <cworth@cworth.org>
|
|
* Kristian Høgsberg <krh@redhat.com>
|
|
* Keith Packard <keithp@keithp.com>
|
|
*/
|
|
|
|
#ifndef CAIRO_PS_SURFACE_PRIVATE_H
|
|
#define CAIRO_PS_SURFACE_PRIVATE_H
|
|
|
|
#include "cairo-ps.h"
|
|
|
|
#include "cairo-surface-private.h"
|
|
#include "cairo-surface-clipper-private.h"
|
|
#include "cairo-pdf-operators-private.h"
|
|
|
|
#include <time.h>
|
|
|
|
typedef struct cairo_ps_surface {
|
|
cairo_surface_t base;
|
|
|
|
/* Here final_stream corresponds to the stream/file passed to
|
|
* cairo_ps_surface_create surface is built. Meanwhile stream is a
|
|
* temporary stream in which the file output is built, (so that
|
|
* the header can be built and inserted into the target stream
|
|
* before the contents of the temporary stream are copied). */
|
|
cairo_output_stream_t *final_stream;
|
|
|
|
FILE *tmpfile;
|
|
cairo_output_stream_t *stream;
|
|
|
|
cairo_bool_t eps;
|
|
cairo_content_t content;
|
|
double width;
|
|
double height;
|
|
cairo_rectangle_int_t page_bbox;
|
|
int bbox_x1, bbox_y1, bbox_x2, bbox_y2;
|
|
cairo_matrix_t cairo_to_ps;
|
|
|
|
/* XXX These 3 are used as temporary storage whilst emitting patterns */
|
|
cairo_image_surface_t *image;
|
|
cairo_image_surface_t *acquired_image;
|
|
void *image_extra;
|
|
|
|
cairo_bool_t use_string_datasource;
|
|
|
|
cairo_bool_t current_pattern_is_solid_color;
|
|
cairo_color_t current_color;
|
|
|
|
int num_pages;
|
|
|
|
cairo_paginated_mode_t paginated_mode;
|
|
|
|
cairo_bool_t force_fallbacks;
|
|
cairo_bool_t has_creation_date;
|
|
time_t creation_date;
|
|
|
|
cairo_scaled_font_subsets_t *font_subsets;
|
|
|
|
cairo_array_t dsc_header_comments;
|
|
cairo_array_t dsc_setup_comments;
|
|
cairo_array_t dsc_page_setup_comments;
|
|
|
|
cairo_array_t *dsc_comment_target;
|
|
|
|
cairo_ps_level_t ps_level;
|
|
cairo_ps_level_t ps_level_used;
|
|
|
|
cairo_surface_clipper_t clipper;
|
|
|
|
cairo_pdf_operators_t pdf_operators;
|
|
cairo_surface_t *paginated_surface;
|
|
} cairo_ps_surface_t;
|
|
|
|
#endif /* CAIRO_PS_SURFACE_PRIVATE_H */
|