2004-08-02 13:13:28 +00:00
|
|
|
/* cairo - a vector graphics library with display and print output
|
|
|
|
|
*
|
2004-10-21 18:40:50 +00:00
|
|
|
* Copyright © 2002 University of Southern California
|
2005-04-14 14:42:26 +00:00
|
|
|
* Copyright © 2005 Red Hat, Inc.
|
2003-07-18 11:34:19 +00:00
|
|
|
*
|
2004-08-02 13:13:28 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
2004-09-04 06:38:34 +00:00
|
|
|
* 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):
|
2005-02-22 11:35:03 +00:00
|
|
|
* Carl D. Worth <cworth@cworth.org>
|
2003-07-18 11:34:19 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
#include "cairoint.h"
|
2005-06-14 19:45:22 +00:00
|
|
|
#include "cairo-gstate-private.h"
|
2005-05-02 13:39:30 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
const cairo_surface_t _cairo_surface_nil = {
|
|
|
|
|
&cairo_image_surface_backend, /* backend */
|
|
|
|
|
-1, /* ref_count */
|
|
|
|
|
CAIRO_STATUS_NO_MEMORY, /* status */
|
|
|
|
|
FALSE, /* finished */
|
|
|
|
|
{ 0, /* size */
|
|
|
|
|
0, /* num_elements */
|
|
|
|
|
0, /* element_size */
|
|
|
|
|
NULL, /* elements */
|
|
|
|
|
}, /* user_data */
|
|
|
|
|
0.0, /* device_x_offset */
|
|
|
|
|
0.0, /* device_y_offset */
|
|
|
|
|
0, /* next_clip_serial */
|
2005-07-28 10:41:08 +00:00
|
|
|
0 /* current_clip_serial */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const cairo_surface_t _cairo_surface_nil_file_not_found = {
|
|
|
|
|
&cairo_image_surface_backend, /* backend */
|
|
|
|
|
-1, /* ref_count */
|
|
|
|
|
CAIRO_STATUS_FILE_NOT_FOUND, /* status */
|
|
|
|
|
FALSE, /* finished */
|
|
|
|
|
{ 0, /* size */
|
|
|
|
|
0, /* num_elements */
|
|
|
|
|
0, /* element_size */
|
|
|
|
|
NULL, /* elements */
|
|
|
|
|
}, /* user_data */
|
|
|
|
|
0.0, /* device_x_offset */
|
|
|
|
|
0.0, /* device_y_offset */
|
|
|
|
|
0, /* next_clip_serial */
|
|
|
|
|
0 /* current_clip_serial */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const cairo_surface_t _cairo_surface_nil_read_error = {
|
|
|
|
|
&cairo_image_surface_backend, /* backend */
|
|
|
|
|
-1, /* ref_count */
|
|
|
|
|
CAIRO_STATUS_READ_ERROR, /* status */
|
|
|
|
|
FALSE, /* finished */
|
|
|
|
|
{ 0, /* size */
|
|
|
|
|
0, /* num_elements */
|
|
|
|
|
0, /* element_size */
|
|
|
|
|
NULL, /* elements */
|
|
|
|
|
}, /* user_data */
|
|
|
|
|
0.0, /* device_x_offset */
|
|
|
|
|
0.0, /* device_y_offset */
|
|
|
|
|
0, /* next_clip_serial */
|
2005-07-27 15:39:34 +00:00
|
|
|
0 /* current_clip_serial */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_set_error:
|
|
|
|
|
* @surface: a surface
|
|
|
|
|
* @status: a status value indicating an error, (eg. not
|
|
|
|
|
* CAIRO_STATUS_SUCCESS)
|
|
|
|
|
*
|
|
|
|
|
* Sets surface->status to @status and calls _cairo_error;
|
|
|
|
|
*
|
|
|
|
|
* All assignments of an error status to surface->status should happen
|
|
|
|
|
* through _cairo_surface_set_error() or else _cairo_error() should be
|
|
|
|
|
* called immediately after the assignment.
|
|
|
|
|
*
|
|
|
|
|
* The purpose of this function is to allow the user to set a
|
|
|
|
|
* breakpoint in _cairo_error() to generate a stack trace for when the
|
|
|
|
|
* user causes cairo to detect an error.
|
|
|
|
|
**/
|
|
|
|
|
static void
|
|
|
|
|
_cairo_surface_set_error (cairo_surface_t *surface,
|
|
|
|
|
cairo_status_t status)
|
|
|
|
|
{
|
2005-08-19 12:08:42 +00:00
|
|
|
/* Don't overwrite an existing error. This preserves the first
|
|
|
|
|
* error, which is the most significant. It also avoids attempting
|
|
|
|
|
* to write to read-only data (eg. from a nil surface). */
|
|
|
|
|
if (surface->status == CAIRO_STATUS_SUCCESS)
|
|
|
|
|
surface->status = status;
|
2005-07-27 15:39:34 +00:00
|
|
|
|
|
|
|
|
_cairo_error (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cairo_surface_status:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
*
|
|
|
|
|
* Checks whether an error has previously occurred for this
|
|
|
|
|
* surface.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS, %CAIRO_STATUS_NULL_POINTER,
|
|
|
|
|
* %CAIRO_STATUS_NO_MEMORY, %CAIRO_STATUS_READ_ERROR,
|
|
|
|
|
* %CAIRO_STATUS_INVALID_CONTENT, %CAIRO_STATUS_INVALUE_FORMAT, or
|
|
|
|
|
* %CAIRO_STATUS_INVALID_VISUAL.
|
|
|
|
|
**/
|
|
|
|
|
cairo_status_t
|
|
|
|
|
cairo_surface_status (cairo_surface_t *surface)
|
|
|
|
|
{
|
|
|
|
|
return surface->status;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 18:56:22 +00:00
|
|
|
void
|
|
|
|
|
_cairo_surface_init (cairo_surface_t *surface,
|
2003-10-31 10:41:37 +00:00
|
|
|
const cairo_surface_backend_t *backend)
|
2003-07-18 11:34:19 +00:00
|
|
|
{
|
2003-10-31 10:41:37 +00:00
|
|
|
surface->backend = backend;
|
2003-07-18 11:34:19 +00:00
|
|
|
|
2003-07-30 08:30:50 +00:00
|
|
|
surface->ref_count = 1;
|
2005-07-27 15:39:34 +00:00
|
|
|
surface->status = CAIRO_STATUS_SUCCESS;
|
2005-03-16 12:08:41 +00:00
|
|
|
surface->finished = FALSE;
|
|
|
|
|
|
2005-04-08 13:14:17 +00:00
|
|
|
_cairo_user_data_array_init (&surface->user_data);
|
2003-07-30 08:30:50 +00:00
|
|
|
|
2005-08-24 01:39:56 +00:00
|
|
|
surface->device_x_offset = 0.0;
|
|
|
|
|
surface->device_y_offset = 0.0;
|
|
|
|
|
surface->device_x_scale = 1.0;
|
|
|
|
|
surface->device_y_scale = 1.0;
|
2005-04-19 16:29:04 +00:00
|
|
|
|
2005-10-27 15:06:53 +00:00
|
|
|
surface->clip = NULL;
|
2005-05-26 11:35:44 +00:00
|
|
|
surface->next_clip_serial = 0;
|
|
|
|
|
surface->current_clip_serial = 0;
|
2005-10-13 21:00:52 +00:00
|
|
|
|
|
|
|
|
surface->is_snapshot = FALSE;
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
2004-05-24 02:28:05 +00:00
|
|
|
cairo_surface_t *
|
2005-07-08 10:12:28 +00:00
|
|
|
_cairo_surface_create_similar_scratch (cairo_surface_t *other,
|
|
|
|
|
cairo_content_t content,
|
2004-05-24 02:28:05 +00:00
|
|
|
int width,
|
|
|
|
|
int height)
|
|
|
|
|
{
|
2005-07-27 15:39:34 +00:00
|
|
|
cairo_format_t format = _cairo_format_from_content (content);
|
2004-05-24 02:28:05 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (other->status)
|
2005-07-28 09:46:38 +00:00
|
|
|
return (cairo_surface_t*) &_cairo_surface_nil;
|
2005-07-27 15:39:34 +00:00
|
|
|
|
|
|
|
|
if (other->backend->create_similar)
|
|
|
|
|
return other->backend->create_similar (other, content, width, height);
|
|
|
|
|
else
|
|
|
|
|
return cairo_image_surface_create (format, width, height);
|
2004-05-24 02:28:05 +00:00
|
|
|
}
|
|
|
|
|
|
2005-07-08 10:12:28 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_create_similar:
|
|
|
|
|
* @other: an existing surface used to select the backend of the new surface
|
|
|
|
|
* @content: the content for the new surface
|
|
|
|
|
* @width: width of the new surface, (in device-space units)
|
|
|
|
|
* @height: height of the new surface (in device-space units)
|
|
|
|
|
*
|
|
|
|
|
* Create a new surface that is as compatible as possible with an
|
|
|
|
|
* existing surface. The new surface will use the same backend as
|
|
|
|
|
* @other unless that is not possible for some reason.
|
|
|
|
|
*
|
2005-07-28 09:46:38 +00:00
|
|
|
* Return value: a pointer to the newly allocated surface. The caller
|
|
|
|
|
* owns the surface and should call cairo_surface_destroy when done
|
|
|
|
|
* with it.
|
|
|
|
|
*
|
|
|
|
|
* This function always returns a valid pointer, but it will return a
|
|
|
|
|
* pointer to a "nil" surface if @other is already in an error state
|
|
|
|
|
* or any other error occurs.
|
2005-07-08 10:12:28 +00:00
|
|
|
**/
|
2003-07-18 11:34:19 +00:00
|
|
|
cairo_surface_t *
|
2005-07-08 10:12:28 +00:00
|
|
|
cairo_surface_create_similar (cairo_surface_t *other,
|
|
|
|
|
cairo_content_t content,
|
2003-07-18 11:34:19 +00:00
|
|
|
int width,
|
|
|
|
|
int height)
|
|
|
|
|
{
|
2005-07-27 15:39:34 +00:00
|
|
|
if (other->status)
|
2005-07-28 09:46:38 +00:00
|
|
|
return (cairo_surface_t*) &_cairo_surface_nil;
|
2003-10-31 10:41:37 +00:00
|
|
|
|
2005-07-28 09:46:38 +00:00
|
|
|
if (! CAIRO_CONTENT_VALID (content)) {
|
|
|
|
|
_cairo_error (CAIRO_STATUS_INVALID_CONTENT);
|
|
|
|
|
return (cairo_surface_t*) &_cairo_surface_nil;
|
|
|
|
|
}
|
2005-07-08 10:12:28 +00:00
|
|
|
|
|
|
|
|
return _cairo_surface_create_similar_solid (other, content,
|
2005-04-14 14:42:26 +00:00
|
|
|
width, height,
|
|
|
|
|
CAIRO_COLOR_TRANSPARENT);
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_surface_t *
|
2005-04-14 14:42:26 +00:00
|
|
|
_cairo_surface_create_similar_solid (cairo_surface_t *other,
|
2005-07-08 10:12:28 +00:00
|
|
|
cairo_content_t content,
|
2005-04-14 14:42:26 +00:00
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
const cairo_color_t *color)
|
2003-07-18 11:34:19 +00:00
|
|
|
{
|
2003-10-31 10:41:37 +00:00
|
|
|
cairo_status_t status;
|
2004-05-24 02:28:05 +00:00
|
|
|
cairo_surface_t *surface;
|
2003-07-18 11:34:19 +00:00
|
|
|
|
2005-07-08 10:12:28 +00:00
|
|
|
surface = _cairo_surface_create_similar_scratch (other, content,
|
2004-05-24 02:28:05 +00:00
|
|
|
width, height);
|
2005-07-28 09:46:38 +00:00
|
|
|
if (surface->status) {
|
|
|
|
|
_cairo_error (CAIRO_STATUS_NO_MEMORY);
|
|
|
|
|
return (cairo_surface_t*) &_cairo_surface_nil;
|
|
|
|
|
}
|
2004-05-28 12:47:00 +00:00
|
|
|
|
2003-10-31 10:41:37 +00:00
|
|
|
status = _cairo_surface_fill_rectangle (surface,
|
2005-05-06 13:26:16 +00:00
|
|
|
CAIRO_OPERATOR_SOURCE, color,
|
2003-10-31 10:41:37 +00:00
|
|
|
0, 0, width, height);
|
|
|
|
|
if (status) {
|
|
|
|
|
cairo_surface_destroy (surface);
|
2005-07-28 09:46:38 +00:00
|
|
|
_cairo_error (status);
|
|
|
|
|
return (cairo_surface_t*) &_cairo_surface_nil;
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2005-06-14 19:45:22 +00:00
|
|
|
cairo_clip_mode_t
|
|
|
|
|
_cairo_surface_get_clip_mode (cairo_surface_t *surface)
|
|
|
|
|
{
|
|
|
|
|
if (surface->backend->intersect_clip_path != NULL)
|
|
|
|
|
return CAIRO_CLIP_MODE_PATH;
|
|
|
|
|
else if (surface->backend->set_clip_region != NULL)
|
|
|
|
|
return CAIRO_CLIP_MODE_REGION;
|
|
|
|
|
else
|
|
|
|
|
return CAIRO_CLIP_MODE_MASK;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-04 18:44:29 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_reference:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
*
|
|
|
|
|
* Increases the reference count on @surface by one. This prevents
|
|
|
|
|
* @surface from being destroyed until a matching call to
|
|
|
|
|
* cairo_surface_destroy() is made.
|
|
|
|
|
*
|
|
|
|
|
* Return value: the referenced #cairo_surface_t.
|
|
|
|
|
**/
|
|
|
|
|
cairo_surface_t *
|
2003-09-16 06:45:19 +00:00
|
|
|
cairo_surface_reference (cairo_surface_t *surface)
|
2003-07-18 11:34:19 +00:00
|
|
|
{
|
|
|
|
|
if (surface == NULL)
|
2005-08-04 18:44:29 +00:00
|
|
|
return NULL;
|
2003-07-18 11:34:19 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->ref_count == (unsigned int)-1)
|
2005-08-04 18:44:29 +00:00
|
|
|
return surface;
|
2005-07-27 15:39:34 +00:00
|
|
|
|
2005-08-23 14:04:28 +00:00
|
|
|
assert (surface->ref_count > 0);
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
surface->ref_count++;
|
2005-08-04 18:44:29 +00:00
|
|
|
|
|
|
|
|
return surface;
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-04 18:44:29 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_destroy:
|
|
|
|
|
* @surface: a #cairo_t
|
|
|
|
|
*
|
|
|
|
|
* Decreases the reference count on @surface by one. If the result is
|
|
|
|
|
* zero, then @surface and all associated resources are freed. See
|
|
|
|
|
* cairo_surface_reference().
|
|
|
|
|
**/
|
2003-07-18 11:34:19 +00:00
|
|
|
void
|
|
|
|
|
cairo_surface_destroy (cairo_surface_t *surface)
|
|
|
|
|
{
|
|
|
|
|
if (surface == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->ref_count == (unsigned int)-1)
|
|
|
|
|
return;
|
|
|
|
|
|
2005-08-23 14:04:28 +00:00
|
|
|
assert (surface->ref_count > 0);
|
|
|
|
|
|
2003-07-18 11:34:19 +00:00
|
|
|
surface->ref_count--;
|
|
|
|
|
if (surface->ref_count)
|
|
|
|
|
return;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
cairo_surface_finish (surface);
|
2005-03-10 09:28:50 +00:00
|
|
|
|
2005-06-03 16:16:44 +00:00
|
|
|
_cairo_user_data_array_fini (&surface->user_data);
|
2005-03-16 12:08:41 +00:00
|
|
|
|
|
|
|
|
free (surface);
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
2003-09-09 17:38:10 +00:00
|
|
|
slim_hidden_def(cairo_surface_destroy);
|
2003-07-18 11:34:19 +00:00
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_finish:
|
|
|
|
|
* @surface: the #cairo_surface_t to finish
|
|
|
|
|
*
|
|
|
|
|
* This function finishes the surface and drops all references to
|
|
|
|
|
* external resources. For example, for the Xlib backend it means
|
|
|
|
|
* that cairo will no longer access the drawable, which can be freed.
|
|
|
|
|
* After calling cairo_surface_finish() the only valid operations on a
|
|
|
|
|
* surface are getting and setting user data and referencing and
|
2005-07-27 15:39:34 +00:00
|
|
|
* destroying it. Further drawing to the surface will not affect the
|
|
|
|
|
* surface but will instead trigger a CAIRO_STATUS_SURFACE_FINISHED
|
|
|
|
|
* error.
|
2005-03-16 12:08:41 +00:00
|
|
|
*
|
|
|
|
|
* When the last call to cairo_surface_destroy() decreases the
|
|
|
|
|
* reference count to zero, cairo will call cairo_surface_finish() if
|
|
|
|
|
* it hasn't been called already, before freeing the resources
|
|
|
|
|
* associated with the surface.
|
|
|
|
|
**/
|
2005-07-27 15:39:34 +00:00
|
|
|
void
|
2005-03-16 12:08:41 +00:00
|
|
|
cairo_surface_finish (cairo_surface_t *surface)
|
|
|
|
|
{
|
2005-04-13 14:51:59 +00:00
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->finished) {
|
|
|
|
|
_cairo_surface_set_error (surface, CAIRO_STATUS_SURFACE_FINISHED);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-03-16 12:08:41 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->backend->finish == NULL) {
|
|
|
|
|
surface->finished = TRUE;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-08-01 11:45:42 +00:00
|
|
|
|
|
|
|
|
if (!surface->status && surface->backend->flush) {
|
|
|
|
|
status = surface->backend->flush (surface);
|
|
|
|
|
if (status) {
|
|
|
|
|
_cairo_surface_set_error (surface, status);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
status = surface->backend->finish (surface);
|
|
|
|
|
if (status) {
|
|
|
|
|
_cairo_surface_set_error (surface, status);
|
|
|
|
|
return;
|
2005-04-13 14:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
surface->finished = TRUE;
|
2005-03-16 12:08:41 +00:00
|
|
|
}
|
|
|
|
|
|
2005-03-10 08:59:11 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_get_user_data:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @key: the address of the #cairo_user_data_key_t the user data was
|
|
|
|
|
* attached to
|
|
|
|
|
*
|
|
|
|
|
* Return user data previously attached to @surface using the specified
|
|
|
|
|
* key. If no user data has been attached with the given key this
|
|
|
|
|
* function returns %NULL.
|
|
|
|
|
*
|
|
|
|
|
* Return value: the user data previously attached or %NULL.
|
|
|
|
|
**/
|
|
|
|
|
void *
|
|
|
|
|
cairo_surface_get_user_data (cairo_surface_t *surface,
|
|
|
|
|
const cairo_user_data_key_t *key)
|
|
|
|
|
{
|
2005-04-08 13:14:17 +00:00
|
|
|
return _cairo_user_data_array_get_data (&surface->user_data,
|
|
|
|
|
key);
|
2005-03-10 08:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cairo_surface_set_user_data:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @key: the address of a #cairo_user_data_key_t to attach the user data to
|
|
|
|
|
* @user_data: the user data to attach to the surface
|
|
|
|
|
* @destroy: a #cairo_destroy_func_t which will be called when the
|
|
|
|
|
* surface is destroyed or when new user data is attached using the
|
|
|
|
|
* same key.
|
|
|
|
|
*
|
|
|
|
|
* Attach user data to @surface. To remove user data from a surface,
|
|
|
|
|
* call this function with the key that was used to set it and %NULL
|
|
|
|
|
* for @data.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS or %CAIRO_STATUS_NO_MEMORY if a
|
|
|
|
|
* slot could not be allocated for the user data.
|
|
|
|
|
**/
|
|
|
|
|
cairo_status_t
|
|
|
|
|
cairo_surface_set_user_data (cairo_surface_t *surface,
|
|
|
|
|
const cairo_user_data_key_t *key,
|
|
|
|
|
void *user_data,
|
|
|
|
|
cairo_destroy_func_t destroy)
|
|
|
|
|
{
|
2005-07-28 09:29:46 +00:00
|
|
|
if (surface->ref_count == -1)
|
|
|
|
|
return CAIRO_STATUS_NO_MEMORY;
|
|
|
|
|
|
2005-04-08 13:14:17 +00:00
|
|
|
return _cairo_user_data_array_set_data (&surface->user_data,
|
|
|
|
|
key, user_data, destroy);
|
2005-03-10 08:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
2005-07-21 06:52:13 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_get_font_options:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @options: a #cairo_font_options_t object into which to store
|
|
|
|
|
* the retrieved options. All existing values are overwritten
|
|
|
|
|
*
|
|
|
|
|
* Retrieves the default font rendering options for the surface.
|
|
|
|
|
* This allows display surfaces to report the correct subpixel order
|
|
|
|
|
* for rendering on them, print surfaces to disable hinting of
|
|
|
|
|
* metrics and so forth. The result can then be used with
|
|
|
|
|
* cairo_scaled_font_create().
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
cairo_surface_get_font_options (cairo_surface_t *surface,
|
|
|
|
|
cairo_font_options_t *options)
|
|
|
|
|
{
|
|
|
|
|
if (!surface->finished && surface->backend->get_font_options) {
|
|
|
|
|
surface->backend->get_font_options (surface, options);
|
|
|
|
|
} else {
|
2005-07-27 15:39:34 +00:00
|
|
|
_cairo_font_options_init_default (options);
|
2005-07-21 06:52:13 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-01 11:45:42 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_flush:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
*
|
|
|
|
|
* Do any pending drawing for the surface and also restore any
|
|
|
|
|
* temporary modification's cairo has made to the surface's
|
|
|
|
|
* state. This function must be called before switching from
|
|
|
|
|
* drawing on the surface with cairo to drawing on it directly
|
|
|
|
|
* with native APIs. If the surface doesn't support direct access,
|
|
|
|
|
* then this function does nothing.
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
cairo_surface_flush (cairo_surface_t *surface)
|
|
|
|
|
{
|
2005-08-19 12:08:42 +00:00
|
|
|
if (surface->status)
|
2005-08-01 11:45:42 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (surface->finished) {
|
|
|
|
|
_cairo_surface_set_error (surface, CAIRO_STATUS_SURFACE_FINISHED);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (surface->backend->flush) {
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
|
|
|
|
|
status = surface->backend->flush (surface);
|
|
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
|
_cairo_surface_set_error (surface, status);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cairo_surface_mark_dirty:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
*
|
|
|
|
|
* Tells cairo that drawing has been done to surface using means other
|
|
|
|
|
* than cairo, and that cairo should reread any cached areas. Note
|
|
|
|
|
* that you must call cairo_surface_flush() before doing such drawing.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
cairo_surface_mark_dirty (cairo_surface_t *surface)
|
|
|
|
|
{
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-08-01 11:45:42 +00:00
|
|
|
cairo_surface_mark_dirty_rectangle (surface, 0, 0, -1, -1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cairo_surface_mark_dirty_rectangle:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @x: X coordinate of dirty rectangle
|
|
|
|
|
* @y: Y coordinate of dirty rectangle
|
|
|
|
|
* @width: width of dirty rectangle
|
|
|
|
|
* @height: height of dirty rectangle
|
|
|
|
|
*
|
|
|
|
|
* Like cairo_surface_mark_dirty(), but drawing has been done only to
|
|
|
|
|
* the specified rectangle, so that cairo can retain cached contents
|
|
|
|
|
* for other parts of the surface.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
cairo_surface_mark_dirty_rectangle (cairo_surface_t *surface,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
int height)
|
|
|
|
|
{
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-08-19 12:08:42 +00:00
|
|
|
if (surface->status)
|
2005-08-01 11:45:42 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (surface->finished) {
|
|
|
|
|
_cairo_surface_set_error (surface, CAIRO_STATUS_SURFACE_FINISHED);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (surface->backend->mark_dirty_rectangle) {
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
|
|
|
|
|
status = surface->backend->mark_dirty_rectangle (surface, x, y, width, height);
|
|
|
|
|
|
|
|
|
|
if (status)
|
|
|
|
|
_cairo_surface_set_error (surface, status);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-03-17 12:57:42 +00:00
|
|
|
/**
|
|
|
|
|
* cairo_surface_set_device_offset:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @x_offset: the offset in the X direction, in device units
|
|
|
|
|
* @y_offset: the offset in the Y direction, in device units
|
|
|
|
|
*
|
|
|
|
|
* Sets an offset that is added to the device coordinates determined
|
|
|
|
|
* by the CTM when drawing to @surface. One use case for this function
|
|
|
|
|
* is when we want to create a #cairo_surface_t that redirects drawing
|
|
|
|
|
* for a portion of an onscreen surface to an offscreen surface in a
|
|
|
|
|
* way that is completely invisible to the user of the cairo
|
|
|
|
|
* API. Setting a transformation via cairo_translate() isn't
|
|
|
|
|
* sufficient to do this, since functions like
|
2005-05-06 21:19:49 +00:00
|
|
|
* cairo_device_to_user() will expose the hidden offset.
|
2005-03-17 12:57:42 +00:00
|
|
|
*
|
|
|
|
|
* Note that the offset only affects drawing to the surface, not using
|
|
|
|
|
* the surface in a surface pattern.
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
cairo_surface_set_device_offset (cairo_surface_t *surface,
|
|
|
|
|
double x_offset,
|
|
|
|
|
double y_offset)
|
|
|
|
|
{
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-08-19 12:08:42 +00:00
|
|
|
if (surface->status)
|
2005-07-27 15:39:34 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (surface->finished) {
|
|
|
|
|
_cairo_surface_set_error (surface, CAIRO_STATUS_SURFACE_FINISHED);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-24 01:39:56 +00:00
|
|
|
surface->device_x_offset = x_offset * surface->device_x_scale;
|
|
|
|
|
surface->device_y_offset = y_offset * surface->device_y_scale;
|
2005-03-17 12:57:42 +00:00
|
|
|
}
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_acquire_source_image:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
2005-08-21 08:24:41 +00:00
|
|
|
* @image_out: location to store a pointer to an image surface that
|
|
|
|
|
* has identical contents to @surface. This surface could be @surface
|
|
|
|
|
* itself, a surface held internal to @surface, or it could be a new
|
|
|
|
|
* surface with a copy of the relevant portion of @surface.
|
2005-01-31 08:50:22 +00:00
|
|
|
* @image_extra: location to store image specific backend data
|
|
|
|
|
*
|
|
|
|
|
* Gets an image surface to use when drawing as a fallback when drawing with
|
|
|
|
|
* @surface as a source. _cairo_surface_release_source_image() must be called
|
|
|
|
|
* when finished.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS if a an image was stored in @image_out.
|
|
|
|
|
* %CAIRO_INT_STATUS_UNSUPPORTED if an image cannot be retrieved for the specified
|
|
|
|
|
* surface. Or %CAIRO_STATUS_NO_MEMORY.
|
|
|
|
|
**/
|
2005-07-15 13:59:47 +00:00
|
|
|
cairo_status_t
|
2005-01-31 08:50:22 +00:00
|
|
|
_cairo_surface_acquire_source_image (cairo_surface_t *surface,
|
|
|
|
|
cairo_image_surface_t **image_out,
|
|
|
|
|
void **image_extra)
|
2003-07-30 08:30:50 +00:00
|
|
|
{
|
2005-03-16 12:08:41 +00:00
|
|
|
assert (!surface->finished);
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
return surface->backend->acquire_source_image (surface, image_out, image_extra);
|
2003-07-30 08:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_release_source_image:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
2005-08-21 08:24:41 +00:00
|
|
|
* @image_extra: same as return from the matching _cairo_surface_acquire_source_image()
|
2005-01-31 08:50:22 +00:00
|
|
|
*
|
|
|
|
|
* Releases any resources obtained with _cairo_surface_acquire_source_image()
|
|
|
|
|
**/
|
2005-07-15 13:59:47 +00:00
|
|
|
void
|
2005-01-31 08:50:22 +00:00
|
|
|
_cairo_surface_release_source_image (cairo_surface_t *surface,
|
|
|
|
|
cairo_image_surface_t *image,
|
|
|
|
|
void *image_extra)
|
|
|
|
|
{
|
2005-03-16 12:08:41 +00:00
|
|
|
assert (!surface->finished);
|
|
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
if (surface->backend->release_source_image)
|
|
|
|
|
surface->backend->release_source_image (surface, image, image_extra);
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_acquire_dest_image:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @interest_rect: area of @surface for which fallback drawing is being done.
|
|
|
|
|
* A value of %NULL indicates that the entire surface is desired.
|
|
|
|
|
* @image_out: location to store a pointer to an image surface that includes at least
|
|
|
|
|
* the intersection of @interest_rect with the visible area of @surface.
|
|
|
|
|
* This surface could be @surface itself, a surface held internal to @surface,
|
|
|
|
|
* or it could be a new surface with a copy of the relevant portion of @surface.
|
2005-08-21 08:24:41 +00:00
|
|
|
* If a new surface is created, it should have the same channels and depth
|
|
|
|
|
* as @surface so that copying to and from it is exact.
|
2005-01-31 08:50:22 +00:00
|
|
|
* @image_rect: location to store area of the original surface occupied
|
|
|
|
|
* by the surface stored in @image.
|
|
|
|
|
* @image_extra: location to store image specific backend data
|
|
|
|
|
*
|
|
|
|
|
* Retrieves a local image for a surface for implementing a fallback drawing
|
|
|
|
|
* operation. After calling this function, the implementation of the fallback
|
|
|
|
|
* drawing operation draws the primitive to the surface stored in @image_out
|
2005-08-21 08:24:41 +00:00
|
|
|
* then calls _cairo_surface_release_dest_image(),
|
2005-01-31 08:50:22 +00:00
|
|
|
* which, if a temporary surface was created, copies the bits back to the
|
|
|
|
|
* main surface and frees the temporary surface.
|
2005-08-21 08:24:41 +00:00
|
|
|
*
|
2005-01-31 08:50:22 +00:00
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS or %CAIRO_STATUS_NO_MEMORY.
|
|
|
|
|
* %CAIRO_INT_STATUS_UNSUPPORTED can be returned but this will mean that
|
|
|
|
|
* the backend can't draw with fallbacks. It's possible for the routine
|
|
|
|
|
* to store NULL in @local_out and return %CAIRO_STATUS_SUCCESS;
|
|
|
|
|
* that indicates that no part of @interest_rect is visible, so no drawing
|
2005-08-21 08:24:41 +00:00
|
|
|
* is necessary. _cairo_surface_release_dest_image() should not be called in that
|
2005-01-31 08:50:22 +00:00
|
|
|
* case.
|
|
|
|
|
**/
|
2003-10-31 10:41:37 +00:00
|
|
|
cairo_status_t
|
2005-01-31 08:50:22 +00:00
|
|
|
_cairo_surface_acquire_dest_image (cairo_surface_t *surface,
|
|
|
|
|
cairo_rectangle_t *interest_rect,
|
|
|
|
|
cairo_image_surface_t **image_out,
|
|
|
|
|
cairo_rectangle_t *image_rect,
|
|
|
|
|
void **image_extra)
|
|
|
|
|
{
|
2005-03-16 12:08:41 +00:00
|
|
|
assert (!surface->finished);
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
return surface->backend->acquire_dest_image (surface, interest_rect,
|
|
|
|
|
image_out, image_rect, image_extra);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2005-08-21 08:24:41 +00:00
|
|
|
* _cairo_surface_release_dest_image:
|
2005-01-31 08:50:22 +00:00
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @interest_rect: same as passed to the matching _cairo_surface_acquire_dest_image()
|
|
|
|
|
* @image: same as returned from the matching _cairo_surface_acquire_dest_image()
|
|
|
|
|
* @image_rect: same as returned from the matching _cairo_surface_acquire_dest_image()
|
|
|
|
|
* @image_extra: same as return from the matching _cairo_surface_acquire_dest_image()
|
|
|
|
|
*
|
|
|
|
|
* Finishes the operation started with _cairo_surface_acquire_dest_image(), by, if
|
|
|
|
|
* necessary, copying the image from @image back to @surface and freeing any
|
|
|
|
|
* resources that were allocated.
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
_cairo_surface_release_dest_image (cairo_surface_t *surface,
|
|
|
|
|
cairo_rectangle_t *interest_rect,
|
|
|
|
|
cairo_image_surface_t *image,
|
|
|
|
|
cairo_rectangle_t *image_rect,
|
|
|
|
|
void *image_extra)
|
2003-07-30 08:30:50 +00:00
|
|
|
{
|
2005-03-16 12:08:41 +00:00
|
|
|
assert (!surface->finished);
|
|
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
if (surface->backend->release_dest_image)
|
|
|
|
|
surface->backend->release_dest_image (surface, interest_rect,
|
|
|
|
|
image, image_rect, image_extra);
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_clone_similar:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @src: the source image
|
|
|
|
|
* @clone_out: location to store a surface compatible with @surface
|
|
|
|
|
* and with contents identical to @src. The caller must call
|
|
|
|
|
* cairo_surface_destroy() on the result.
|
|
|
|
|
*
|
|
|
|
|
* Creates a surface with contents identical to @src but that
|
|
|
|
|
* can be used efficiently with @surface. If @surface and @src are
|
|
|
|
|
* already compatible then it may return a new reference to @src.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS if a surface was created and stored
|
|
|
|
|
* in @clone_out. Otherwise %CAIRO_INT_STATUS_UNSUPPORTED or another
|
|
|
|
|
* error like %CAIRO_STATUS_NO_MEMORY.
|
|
|
|
|
**/
|
|
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_clone_similar (cairo_surface_t *surface,
|
|
|
|
|
cairo_surface_t *src,
|
|
|
|
|
cairo_surface_t **clone_out)
|
|
|
|
|
{
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
cairo_image_surface_t *image;
|
|
|
|
|
void *image_extra;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2005-08-21 08:53:56 +00:00
|
|
|
if (surface->backend->clone_similar == NULL)
|
|
|
|
|
return CAIRO_INT_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
|
|
status = surface->backend->clone_similar (surface, src, clone_out);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
2005-01-31 08:50:22 +00:00
|
|
|
|
|
|
|
|
status = _cairo_surface_acquire_source_image (src, &image, &image_extra);
|
|
|
|
|
if (status != CAIRO_STATUS_SUCCESS)
|
|
|
|
|
return status;
|
2005-10-13 21:00:52 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
status = surface->backend->clone_similar (surface, &image->base, clone_out);
|
|
|
|
|
|
|
|
|
|
/* If the above failed point, we could implement a full fallback
|
|
|
|
|
* using acquire_dest_image, but that's going to be very
|
|
|
|
|
* inefficient compared to a backend-specific implementation of
|
|
|
|
|
* clone_similar() with an image source. So we don't bother
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
_cairo_surface_release_source_image (src, image, image_extra);
|
|
|
|
|
return status;
|
2003-07-30 08:30:50 +00:00
|
|
|
}
|
2003-07-18 11:34:19 +00:00
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_snapshot
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @snapshot_out: return value surface---not necessarily of the same type as @surface
|
|
|
|
|
*
|
|
|
|
|
* Make an immutable copy of @surface. It is an error to call a
|
|
|
|
|
* surface-modifying function on the result of this function.
|
|
|
|
|
*
|
|
|
|
|
* The caller owns the return value and should call
|
|
|
|
|
* cairo_surface_destroy when finished with it. This function will not
|
|
|
|
|
* return NULL, but will return a nil surface instead.
|
|
|
|
|
**/
|
|
|
|
|
cairo_surface_t *
|
|
|
|
|
_cairo_surface_snapshot (cairo_surface_t *surface)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
cairo_surface_t *snapshot;
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
cairo_pattern_union_t pattern;
|
|
|
|
|
cairo_image_surface_t *image;
|
|
|
|
|
void *image_extra;
|
|
|
|
|
|
|
|
|
|
if (surface->finished)
|
|
|
|
|
return (cairo_surface_t *) &_cairo_surface_nil;
|
|
|
|
|
|
|
|
|
|
/* XXX: Will need to do something very different here to snapshot
|
|
|
|
|
* a meta-surface. */
|
|
|
|
|
|
|
|
|
|
status = _cairo_surface_acquire_source_image (surface,
|
|
|
|
|
&image, &image_extra);
|
|
|
|
|
if (status != CAIRO_STATUS_SUCCESS)
|
|
|
|
|
return (cairo_surface_t *) &_cairo_surface_nil;
|
|
|
|
|
|
|
|
|
|
snapshot = cairo_image_surface_create (image->format,
|
|
|
|
|
image->width,
|
|
|
|
|
image->height);
|
|
|
|
|
if (cairo_surface_status (snapshot))
|
|
|
|
|
return snapshot;
|
|
|
|
|
|
|
|
|
|
_cairo_pattern_init_for_surface (&pattern.surface, &image->base);
|
|
|
|
|
|
|
|
|
|
_cairo_surface_composite (CAIRO_OPERATOR_SOURCE,
|
|
|
|
|
&pattern.base,
|
|
|
|
|
NULL,
|
|
|
|
|
snapshot,
|
|
|
|
|
0, 0,
|
|
|
|
|
0, 0,
|
|
|
|
|
0, 0,
|
|
|
|
|
image->width,
|
|
|
|
|
image->height);
|
|
|
|
|
|
|
|
|
|
_cairo_pattern_fini (&pattern.base);
|
|
|
|
|
|
|
|
|
|
_cairo_surface_release_source_image (surface,
|
|
|
|
|
image, &image_extra);
|
|
|
|
|
|
|
|
|
|
snapshot->is_snapshot = TRUE;
|
|
|
|
|
|
|
|
|
|
return snapshot;
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
typedef struct {
|
|
|
|
|
cairo_surface_t *dst;
|
|
|
|
|
cairo_rectangle_t extents;
|
|
|
|
|
cairo_image_surface_t *image;
|
|
|
|
|
cairo_rectangle_t image_rect;
|
|
|
|
|
void *image_extra;
|
|
|
|
|
} fallback_state_t;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
/**
|
|
|
|
|
* _fallback_init:
|
|
|
|
|
*
|
|
|
|
|
* Acquire destination image surface needed for an image-based
|
|
|
|
|
* fallback.
|
|
|
|
|
*
|
|
|
|
|
* Return value: CAIRO_INT_STATUS_NOTHING_TO_DO if the extents are not
|
|
|
|
|
* visible, CAIRO_STATUS_SUCCESS if some portion is visible and all
|
|
|
|
|
* went well, or some error status otherwise.
|
|
|
|
|
**/
|
|
|
|
|
static cairo_int_status_t
|
2005-01-31 08:50:22 +00:00
|
|
|
_fallback_init (fallback_state_t *state,
|
|
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
int height)
|
|
|
|
|
{
|
2005-07-27 15:39:34 +00:00
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
state->extents.x = x;
|
|
|
|
|
state->extents.y = y;
|
|
|
|
|
state->extents.width = width;
|
|
|
|
|
state->extents.height = height;
|
|
|
|
|
|
|
|
|
|
state->dst = dst;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
status = _cairo_surface_acquire_dest_image (dst, &state->extents,
|
|
|
|
|
&state->image, &state->image_rect,
|
|
|
|
|
&state->image_extra);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
/* XXX: This NULL value tucked away in state->image is a rather
|
|
|
|
|
* ugly interface. Cleaner would be to push the
|
|
|
|
|
* CAIRO_INT_STATUS_NOTHING_TO_DO value down into
|
|
|
|
|
* _cairo_surface_acquire_dest_image and its backend
|
|
|
|
|
* counterparts. */
|
|
|
|
|
if (state->image == NULL)
|
|
|
|
|
return CAIRO_INT_STATUS_NOTHING_TO_DO;
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2005-07-27 15:39:34 +00:00
|
|
|
_fallback_fini (fallback_state_t *state)
|
2005-01-31 08:50:22 +00:00
|
|
|
{
|
|
|
|
|
_cairo_surface_release_dest_image (state->dst, &state->extents,
|
2005-07-27 15:39:34 +00:00
|
|
|
state->image, &state->image_rect,
|
|
|
|
|
state->image_extra);
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static cairo_status_t
|
|
|
|
|
_fallback_composite (cairo_operator_t operator,
|
2005-03-03 18:39:06 +00:00
|
|
|
cairo_pattern_t *src,
|
|
|
|
|
cairo_pattern_t *mask,
|
2005-01-31 08:50:22 +00:00
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
int src_x,
|
|
|
|
|
int src_y,
|
|
|
|
|
int mask_x,
|
|
|
|
|
int mask_y,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height)
|
|
|
|
|
{
|
|
|
|
|
fallback_state_t state;
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
|
|
|
|
|
status = _fallback_init (&state, dst, dst_x, dst_y, width, height);
|
2005-07-27 15:39:34 +00:00
|
|
|
if (status) {
|
|
|
|
|
if (status == CAIRO_INT_STATUS_NOTHING_TO_DO)
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2005-01-31 08:50:22 +00:00
|
|
|
return status;
|
2005-07-27 15:39:34 +00:00
|
|
|
}
|
2005-01-31 08:50:22 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
status = state.image->base.backend->composite (operator, src, mask,
|
|
|
|
|
&state.image->base,
|
|
|
|
|
src_x, src_y, mask_x, mask_y,
|
|
|
|
|
dst_x - state.image_rect.x,
|
|
|
|
|
dst_y - state.image_rect.y,
|
|
|
|
|
width, height);
|
|
|
|
|
_fallback_fini (&state);
|
2005-01-31 08:50:22 +00:00
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-23 10:08:53 +00:00
|
|
|
cairo_status_t
|
2003-07-30 08:30:50 +00:00
|
|
|
_cairo_surface_composite (cairo_operator_t operator,
|
2005-03-03 18:39:06 +00:00
|
|
|
cairo_pattern_t *src,
|
|
|
|
|
cairo_pattern_t *mask,
|
2003-07-30 08:30:50 +00:00
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
int src_x,
|
|
|
|
|
int src_y,
|
|
|
|
|
int mask_x,
|
|
|
|
|
int mask_y,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height)
|
2003-07-18 11:34:19 +00:00
|
|
|
{
|
2003-10-27 18:40:55 +00:00
|
|
|
cairo_int_status_t status;
|
2003-10-31 10:41:37 +00:00
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! dst->is_snapshot);
|
|
|
|
|
|
2005-08-18 15:50:36 +00:00
|
|
|
if (mask) {
|
|
|
|
|
/* These operators aren't interpreted the same way by the backends;
|
|
|
|
|
* they are implemented in terms of other operators in cairo-gstate.c
|
|
|
|
|
*/
|
|
|
|
|
assert (operator != CAIRO_OPERATOR_SOURCE && operator != CAIRO_OPERATOR_CLEAR);
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (dst->status)
|
|
|
|
|
return dst->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (dst->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
if (dst->backend->composite) {
|
|
|
|
|
status = dst->backend->composite (operator,
|
|
|
|
|
src, mask, dst,
|
|
|
|
|
src_x, src_y,
|
|
|
|
|
mask_x, mask_y,
|
|
|
|
|
dst_x, dst_y,
|
|
|
|
|
width, height);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
|
|
|
|
}
|
2003-10-31 10:41:37 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
return _fallback_composite (operator,
|
2005-03-03 18:39:06 +00:00
|
|
|
src, mask, dst,
|
2005-01-31 08:50:22 +00:00
|
|
|
src_x, src_y,
|
|
|
|
|
mask_x, mask_y,
|
|
|
|
|
dst_x, dst_y,
|
|
|
|
|
width, height);
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_fill_rectangle:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @operator: the operator to apply to the rectangle
|
|
|
|
|
* @color: the source color
|
|
|
|
|
* @x: X coordinate of rectangle, in backend coordinates
|
|
|
|
|
* @y: Y coordinate of rectangle, in backend coordinates
|
|
|
|
|
* @width: width of rectangle, in backend coordinates
|
|
|
|
|
* @height: height of rectangle, in backend coordinates
|
|
|
|
|
*
|
|
|
|
|
* Applies an operator to a rectangle using a solid color as the source.
|
|
|
|
|
* See _cairo_surface_fill_rectangles() for full details.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS or the error that occurred
|
|
|
|
|
**/
|
2003-10-31 10:41:37 +00:00
|
|
|
cairo_status_t
|
2005-04-14 14:42:26 +00:00
|
|
|
_cairo_surface_fill_rectangle (cairo_surface_t *surface,
|
|
|
|
|
cairo_operator_t operator,
|
|
|
|
|
const cairo_color_t *color,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
int height)
|
2003-07-18 11:34:19 +00:00
|
|
|
{
|
2003-07-30 08:30:50 +00:00
|
|
|
cairo_rectangle_t rect;
|
|
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2003-07-30 08:30:50 +00:00
|
|
|
rect.x = x;
|
|
|
|
|
rect.y = y;
|
|
|
|
|
rect.width = width;
|
|
|
|
|
rect.height = height;
|
|
|
|
|
|
2003-10-31 10:41:37 +00:00
|
|
|
return _cairo_surface_fill_rectangles (surface, operator, color, &rect, 1);
|
2003-07-30 08:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_fill_region:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @operator: the operator to apply to the region
|
|
|
|
|
* @color: the source color
|
|
|
|
|
* @region: the region to modify, in backend coordinates
|
|
|
|
|
*
|
|
|
|
|
* Applies an operator to a set of rectangles specified as a
|
|
|
|
|
* #pixman_region16_t using a solid color as the source.
|
|
|
|
|
* See _cairo_surface_fill_rectangles() for full details.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS or the error that occurred
|
|
|
|
|
**/
|
|
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_fill_region (cairo_surface_t *surface,
|
|
|
|
|
cairo_operator_t operator,
|
|
|
|
|
const cairo_color_t *color,
|
|
|
|
|
pixman_region16_t *region)
|
|
|
|
|
{
|
|
|
|
|
int num_rects = pixman_region_num_rects (region);
|
|
|
|
|
pixman_box16_t *boxes = pixman_region_rects (region);
|
|
|
|
|
cairo_rectangle_t *rects;
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
int i;
|
|
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
if (!num_rects)
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
rects = malloc (sizeof (pixman_rectangle_t) * num_rects);
|
|
|
|
|
if (!rects)
|
|
|
|
|
return CAIRO_STATUS_NO_MEMORY;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < num_rects; i++) {
|
|
|
|
|
rects[i].x = boxes[i].x1;
|
|
|
|
|
rects[i].y = boxes[i].y1;
|
|
|
|
|
rects[i].width = boxes[i].x2 - boxes[i].x1;
|
|
|
|
|
rects[i].height = boxes[i].y2 - boxes[i].y1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
status = _cairo_surface_fill_rectangles (surface, operator,
|
|
|
|
|
color, rects, num_rects);
|
|
|
|
|
|
|
|
|
|
free (rects);
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
static cairo_status_t
|
|
|
|
|
_fallback_fill_rectangles (cairo_surface_t *surface,
|
|
|
|
|
cairo_operator_t operator,
|
|
|
|
|
const cairo_color_t *color,
|
|
|
|
|
cairo_rectangle_t *rects,
|
|
|
|
|
int num_rects)
|
|
|
|
|
{
|
|
|
|
|
fallback_state_t state;
|
|
|
|
|
cairo_rectangle_t *offset_rects = NULL;
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
int x1, y1, x2, y2;
|
|
|
|
|
int i;
|
|
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
if (num_rects <= 0)
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
/* Compute the bounds of the rectangles, so that we know what area of the
|
|
|
|
|
* destination surface to fetch
|
|
|
|
|
*/
|
|
|
|
|
x1 = rects[0].x;
|
|
|
|
|
y1 = rects[0].y;
|
|
|
|
|
x2 = rects[0].x + rects[0].width;
|
|
|
|
|
y2 = rects[0].y + rects[0].height;
|
|
|
|
|
|
|
|
|
|
for (i = 1; i < num_rects; i++) {
|
2005-05-11 16:01:56 +00:00
|
|
|
if (rects[i].x < x1)
|
|
|
|
|
x1 = rects[i].x;
|
|
|
|
|
if (rects[i].y < y1)
|
|
|
|
|
y1 = rects[i].y;
|
|
|
|
|
|
|
|
|
|
if (rects[i].x + rects[i].width > x2)
|
|
|
|
|
x2 = rects[i].x + rects[i].width;
|
|
|
|
|
if (rects[i].y + rects[i].height > y2)
|
|
|
|
|
y2 = rects[i].y + rects[i].height;
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
status = _fallback_init (&state, surface, x1, y1, x2 - x1, y2 - y1);
|
2005-07-27 15:39:34 +00:00
|
|
|
if (status) {
|
|
|
|
|
if (status == CAIRO_INT_STATUS_NOTHING_TO_DO)
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2005-01-31 08:50:22 +00:00
|
|
|
return status;
|
2005-07-27 15:39:34 +00:00
|
|
|
}
|
2005-01-31 08:50:22 +00:00
|
|
|
|
|
|
|
|
/* If the fetched image isn't at 0,0, we need to offset the rectangles */
|
|
|
|
|
|
|
|
|
|
if (state.image_rect.x != 0 || state.image_rect.y != 0) {
|
|
|
|
|
offset_rects = malloc (sizeof (cairo_rectangle_t) * num_rects);
|
2005-07-27 15:39:34 +00:00
|
|
|
if (offset_rects == NULL) {
|
2005-01-31 08:50:22 +00:00
|
|
|
status = CAIRO_STATUS_NO_MEMORY;
|
2005-07-27 15:39:34 +00:00
|
|
|
goto DONE;
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < num_rects; i++) {
|
|
|
|
|
offset_rects[i].x = rects[i].x - state.image_rect.x;
|
|
|
|
|
offset_rects[i].y = rects[i].y - state.image_rect.y;
|
|
|
|
|
offset_rects[i].width = rects[i].width;
|
|
|
|
|
offset_rects[i].height = rects[i].height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rects = offset_rects;
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
status = state.image->base.backend->fill_rectangles (&state.image->base,
|
|
|
|
|
operator, color,
|
|
|
|
|
rects, num_rects);
|
2005-01-31 08:50:22 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
free (offset_rects);
|
|
|
|
|
|
|
|
|
|
DONE:
|
|
|
|
|
_fallback_fini (&state);
|
2005-01-31 08:50:22 +00:00
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_fill_rectangles:
|
|
|
|
|
* @surface: a #cairo_surface_t
|
|
|
|
|
* @operator: the operator to apply to the region
|
|
|
|
|
* @color: the source color
|
|
|
|
|
* @rects: the rectangles to modify, in backend coordinates
|
|
|
|
|
* @num_rects: the number of rectangles in @rects
|
|
|
|
|
*
|
|
|
|
|
* Applies an operator to a set of rectangles using a solid color
|
|
|
|
|
* as the source. Note that even if the operator is an unbounded operator
|
2005-08-18 15:50:36 +00:00
|
|
|
* such as %CAIRO_OPERATOR_IN, only the given set of rectangles
|
2005-08-16 18:22:16 +00:00
|
|
|
* is affected. This differs from _cairo_surface_composite_trapezoids()
|
|
|
|
|
* where the entire destination rectangle is cleared.
|
|
|
|
|
*
|
|
|
|
|
* Return value: %CAIRO_STATUS_SUCCESS or the error that occurred
|
|
|
|
|
**/
|
2003-10-31 10:41:37 +00:00
|
|
|
cairo_status_t
|
2003-07-30 08:30:50 +00:00
|
|
|
_cairo_surface_fill_rectangles (cairo_surface_t *surface,
|
|
|
|
|
cairo_operator_t operator,
|
|
|
|
|
const cairo_color_t *color,
|
|
|
|
|
cairo_rectangle_t *rects,
|
|
|
|
|
int num_rects)
|
|
|
|
|
{
|
2003-10-27 18:40:55 +00:00
|
|
|
cairo_int_status_t status;
|
2003-09-30 18:56:22 +00:00
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2003-09-05 15:29:49 +00:00
|
|
|
if (num_rects == 0)
|
2003-10-31 10:41:37 +00:00
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2003-09-05 15:29:49 +00:00
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
if (surface->backend->fill_rectangles) {
|
|
|
|
|
status = surface->backend->fill_rectangles (surface,
|
|
|
|
|
operator,
|
|
|
|
|
color,
|
|
|
|
|
rects, num_rects);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
|
|
|
|
}
|
2003-10-31 10:41:37 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
return _fallback_fill_rectangles (surface, operator, color, rects, num_rects);
|
|
|
|
|
}
|
2005-10-27 15:06:53 +00:00
|
|
|
|
|
|
|
|
static cairo_status_t
|
|
|
|
|
_fallback_paint (cairo_operator_t operator,
|
2005-10-28 21:00:42 +00:00
|
|
|
cairo_pattern_t *source_pattern,
|
2005-10-27 15:06:53 +00:00
|
|
|
cairo_surface_t *dst)
|
|
|
|
|
{
|
|
|
|
|
cairo_status_t status;
|
2005-10-28 21:00:42 +00:00
|
|
|
cairo_rectangle_t extents;
|
2005-10-27 15:06:53 +00:00
|
|
|
cairo_box_t box;
|
|
|
|
|
cairo_traps_t traps;
|
|
|
|
|
|
2005-10-28 21:00:42 +00:00
|
|
|
status = _cairo_surface_get_extents (dst, &extents);
|
2005-10-27 15:06:53 +00:00
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2005-10-28 21:00:42 +00:00
|
|
|
if (_cairo_operator_bounded_by_source (operator)) {
|
|
|
|
|
cairo_rectangle_t source_extents;
|
|
|
|
|
status = _cairo_pattern_get_extents (source_pattern, &source_extents);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
_cairo_rectangle_intersect (&extents, &source_extents);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
status = _cairo_clip_intersect_to_rectangle (dst->clip, &extents);
|
2005-10-27 15:06:53 +00:00
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2005-10-28 21:00:42 +00:00
|
|
|
box.p1.x = _cairo_fixed_from_int (extents.x);
|
|
|
|
|
box.p1.y = _cairo_fixed_from_int (extents.y);
|
|
|
|
|
box.p2.x = _cairo_fixed_from_int (extents.x + extents.width);
|
|
|
|
|
box.p2.y = _cairo_fixed_from_int (extents.y + extents.height);
|
2005-10-27 15:06:53 +00:00
|
|
|
|
|
|
|
|
status = _cairo_traps_init_box (&traps, &box);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2005-10-28 21:00:42 +00:00
|
|
|
_cairo_surface_clip_and_composite_trapezoids (source_pattern,
|
2005-10-27 15:06:53 +00:00
|
|
|
operator,
|
|
|
|
|
dst,
|
|
|
|
|
&traps,
|
|
|
|
|
dst->clip,
|
|
|
|
|
CAIRO_ANTIALIAS_NONE);
|
|
|
|
|
|
|
|
|
|
_cairo_traps_fini (&traps);
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_paint (cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *pattern,
|
|
|
|
|
cairo_surface_t *dst)
|
|
|
|
|
{
|
|
|
|
|
/* cairo_status_t status; */
|
|
|
|
|
|
|
|
|
|
assert (! dst->is_snapshot);
|
|
|
|
|
|
|
|
|
|
/* XXX: Need to add this to the backend.
|
|
|
|
|
if (dst->backend->paint) {
|
|
|
|
|
status = dst->backend->paint (operator, pattern, dst);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return _fallback_paint (operator, pattern, dst);
|
|
|
|
|
}
|
|
|
|
|
|
2005-10-27 17:16:46 +00:00
|
|
|
static cairo_status_t
|
|
|
|
|
_cairo_surface_mask_draw_func (void *closure,
|
|
|
|
|
cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *src,
|
|
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
const cairo_rectangle_t *extents)
|
|
|
|
|
{
|
|
|
|
|
cairo_pattern_t *mask = closure;
|
|
|
|
|
|
|
|
|
|
if (src)
|
|
|
|
|
return _cairo_surface_composite (operator,
|
|
|
|
|
src, mask, dst,
|
|
|
|
|
extents->x, extents->y,
|
|
|
|
|
extents->x, extents->y,
|
|
|
|
|
extents->x - dst_x, extents->y - dst_y,
|
|
|
|
|
extents->width, extents->height);
|
|
|
|
|
else
|
|
|
|
|
return _cairo_surface_composite (operator,
|
|
|
|
|
mask, NULL, dst,
|
|
|
|
|
extents->x, extents->y,
|
|
|
|
|
0, 0, /* unused */
|
|
|
|
|
extents->x - dst_x, extents->y - dst_y,
|
|
|
|
|
extents->width, extents->height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static cairo_status_t
|
|
|
|
|
_fallback_mask (cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *source_pattern,
|
|
|
|
|
cairo_pattern_t *mask_pattern,
|
|
|
|
|
cairo_surface_t *dst)
|
|
|
|
|
{
|
|
|
|
|
cairo_status_t status;
|
2005-10-28 20:49:59 +00:00
|
|
|
cairo_rectangle_t extents, source_extents, mask_extents;
|
2005-10-27 17:16:46 +00:00
|
|
|
|
|
|
|
|
status = _cairo_surface_get_extents (dst, &extents);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
2005-10-28 20:49:59 +00:00
|
|
|
if (_cairo_operator_bounded_by_source (operator)) {
|
|
|
|
|
status = _cairo_pattern_get_extents (source_pattern, &source_extents);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
_cairo_rectangle_intersect (&extents, &source_extents);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_cairo_operator_bounded_by_mask (operator)) {
|
|
|
|
|
status = _cairo_pattern_get_extents (mask_pattern, &mask_extents);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
_cairo_rectangle_intersect (&extents, &mask_extents);
|
|
|
|
|
}
|
2005-10-27 17:16:46 +00:00
|
|
|
|
|
|
|
|
status = _cairo_clip_intersect_to_rectangle (dst->clip, &extents);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
status = _cairo_gstate_clip_and_composite (dst->clip, operator,
|
|
|
|
|
source_pattern,
|
|
|
|
|
_cairo_surface_mask_draw_func,
|
|
|
|
|
mask_pattern,
|
|
|
|
|
dst,
|
|
|
|
|
&extents);
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_mask (cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *source_pattern,
|
|
|
|
|
cairo_pattern_t *mask_pattern,
|
|
|
|
|
cairo_surface_t *dst)
|
|
|
|
|
{
|
|
|
|
|
/* cairo_status_t status; */
|
|
|
|
|
|
|
|
|
|
assert (! dst->is_snapshot);
|
|
|
|
|
|
|
|
|
|
/* XXX: Need to add this to the backend.
|
|
|
|
|
if (dst->backend->mask) {
|
|
|
|
|
status = dst->backend->mask (operator, pattern, dst);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return _fallback_mask (operator, source_pattern, mask_pattern, dst);
|
|
|
|
|
}
|
2003-07-30 08:30:50 +00:00
|
|
|
|
2005-10-13 16:55:14 +00:00
|
|
|
static cairo_status_t
|
|
|
|
|
_fallback_fill_path (cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *pattern,
|
|
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
cairo_path_fixed_t *path,
|
|
|
|
|
cairo_fill_rule_t fill_rule,
|
|
|
|
|
double tolerance,
|
|
|
|
|
cairo_clip_t *clip,
|
|
|
|
|
cairo_antialias_t antialias)
|
|
|
|
|
{
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
cairo_traps_t traps;
|
|
|
|
|
|
|
|
|
|
_cairo_traps_init (&traps);
|
|
|
|
|
|
|
|
|
|
status = _cairo_path_fixed_fill_to_traps (path,
|
|
|
|
|
fill_rule,
|
|
|
|
|
tolerance,
|
|
|
|
|
&traps);
|
|
|
|
|
if (status) {
|
|
|
|
|
_cairo_traps_fini (&traps);
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
status = _cairo_surface_clip_and_composite_trapezoids (pattern,
|
|
|
|
|
operator,
|
|
|
|
|
dst,
|
|
|
|
|
&traps,
|
|
|
|
|
clip,
|
|
|
|
|
antialias);
|
|
|
|
|
|
|
|
|
|
_cairo_traps_fini (&traps);
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cairo_status_t
|
2005-06-14 19:45:22 +00:00
|
|
|
_cairo_surface_fill_path (cairo_operator_t operator,
|
2005-10-13 16:55:14 +00:00
|
|
|
cairo_pattern_t *pattern,
|
|
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
cairo_path_fixed_t *path,
|
2005-06-14 19:45:22 +00:00
|
|
|
cairo_fill_rule_t fill_rule,
|
2005-10-13 16:55:14 +00:00
|
|
|
double tolerance,
|
|
|
|
|
cairo_clip_t *clip,
|
|
|
|
|
cairo_antialias_t antialias)
|
2005-05-03 14:28:50 +00:00
|
|
|
{
|
2005-10-13 16:55:14 +00:00
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! dst->is_snapshot);
|
|
|
|
|
|
2005-10-13 16:55:14 +00:00
|
|
|
if (dst->backend->fill_path) {
|
|
|
|
|
status = dst->backend->fill_path (operator, pattern, dst, path,
|
|
|
|
|
fill_rule, tolerance, antialias);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
|
|
|
|
}
|
2005-05-03 14:28:50 +00:00
|
|
|
|
2005-10-13 16:55:14 +00:00
|
|
|
return _fallback_fill_path (operator, pattern, dst, path,
|
|
|
|
|
fill_rule, tolerance, clip, antialias);
|
|
|
|
|
}
|
2005-05-03 14:28:50 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
static cairo_status_t
|
|
|
|
|
_fallback_composite_trapezoids (cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *pattern,
|
|
|
|
|
cairo_surface_t *dst,
|
2005-08-08 18:35:22 +00:00
|
|
|
cairo_antialias_t antialias,
|
2005-01-31 08:50:22 +00:00
|
|
|
int src_x,
|
|
|
|
|
int src_y,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height,
|
|
|
|
|
cairo_trapezoid_t *traps,
|
|
|
|
|
int num_traps)
|
|
|
|
|
{
|
|
|
|
|
fallback_state_t state;
|
|
|
|
|
cairo_trapezoid_t *offset_traps = NULL;
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
int i;
|
2003-07-30 08:30:50 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
status = _fallback_init (&state, dst, dst_x, dst_y, width, height);
|
2005-07-27 15:39:34 +00:00
|
|
|
if (status) {
|
|
|
|
|
if (status == CAIRO_INT_STATUS_NOTHING_TO_DO)
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2005-01-31 08:50:22 +00:00
|
|
|
return status;
|
2005-07-27 15:39:34 +00:00
|
|
|
}
|
2003-07-30 08:30:50 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
/* If the destination image isn't at 0,0, we need to offset the trapezoids */
|
|
|
|
|
|
|
|
|
|
if (state.image_rect.x != 0 || state.image_rect.y != 0) {
|
|
|
|
|
|
|
|
|
|
cairo_fixed_t xoff = _cairo_fixed_from_int (state.image_rect.x);
|
|
|
|
|
cairo_fixed_t yoff = _cairo_fixed_from_int (state.image_rect.y);
|
|
|
|
|
|
|
|
|
|
offset_traps = malloc (sizeof (cairo_trapezoid_t) * num_traps);
|
|
|
|
|
if (!offset_traps) {
|
|
|
|
|
status = CAIRO_STATUS_NO_MEMORY;
|
2005-07-27 15:39:34 +00:00
|
|
|
goto DONE;
|
2005-01-31 08:50:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < num_traps; i++) {
|
|
|
|
|
offset_traps[i].top = traps[i].top - yoff;
|
|
|
|
|
offset_traps[i].bottom = traps[i].bottom - yoff;
|
|
|
|
|
offset_traps[i].left.p1.x = traps[i].left.p1.x - xoff;
|
|
|
|
|
offset_traps[i].left.p1.y = traps[i].left.p1.y - yoff;
|
|
|
|
|
offset_traps[i].left.p2.x = traps[i].left.p2.x - xoff;
|
|
|
|
|
offset_traps[i].left.p2.y = traps[i].left.p2.y - yoff;
|
|
|
|
|
offset_traps[i].right.p1.x = traps[i].right.p1.x - xoff;
|
|
|
|
|
offset_traps[i].right.p1.y = traps[i].right.p1.y - yoff;
|
|
|
|
|
offset_traps[i].right.p2.x = traps[i].right.p2.x - xoff;
|
|
|
|
|
offset_traps[i].right.p2.y = traps[i].right.p2.y - yoff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
traps = offset_traps;
|
|
|
|
|
}
|
2003-07-30 08:30:50 +00:00
|
|
|
|
2005-01-31 08:50:22 +00:00
|
|
|
state.image->base.backend->composite_trapezoids (operator, pattern,
|
|
|
|
|
&state.image->base,
|
2005-08-08 18:35:22 +00:00
|
|
|
antialias,
|
2005-01-31 08:50:22 +00:00
|
|
|
src_x, src_y,
|
|
|
|
|
dst_x - state.image_rect.x,
|
2005-02-21 08:17:42 +00:00
|
|
|
dst_y - state.image_rect.y,
|
2005-01-31 08:50:22 +00:00
|
|
|
width, height, traps, num_traps);
|
|
|
|
|
if (offset_traps)
|
|
|
|
|
free (offset_traps);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
DONE:
|
|
|
|
|
_fallback_fini (&state);
|
2005-01-31 08:50:22 +00:00
|
|
|
|
2003-10-31 10:41:37 +00:00
|
|
|
return status;
|
2003-07-30 08:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
2003-10-31 10:41:37 +00:00
|
|
|
cairo_status_t
|
2003-07-30 08:30:50 +00:00
|
|
|
_cairo_surface_composite_trapezoids (cairo_operator_t operator,
|
2005-01-27 10:46:20 +00:00
|
|
|
cairo_pattern_t *pattern,
|
2003-07-30 08:30:50 +00:00
|
|
|
cairo_surface_t *dst,
|
2005-08-08 18:35:22 +00:00
|
|
|
cairo_antialias_t antialias,
|
2005-01-27 10:46:20 +00:00
|
|
|
int src_x,
|
|
|
|
|
int src_y,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height,
|
2003-09-05 15:29:49 +00:00
|
|
|
cairo_trapezoid_t *traps,
|
2003-07-30 08:30:50 +00:00
|
|
|
int num_traps)
|
|
|
|
|
{
|
2003-10-27 18:40:55 +00:00
|
|
|
cairo_int_status_t status;
|
|
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! dst->is_snapshot);
|
|
|
|
|
|
2005-08-18 15:50:36 +00:00
|
|
|
/* These operators aren't interpreted the same way by the backends;
|
|
|
|
|
* they are implemented in terms of other operators in cairo-gstate.c
|
|
|
|
|
*/
|
|
|
|
|
assert (operator != CAIRO_OPERATOR_SOURCE && operator != CAIRO_OPERATOR_CLEAR);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (dst->status)
|
|
|
|
|
return dst->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (dst->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
if (dst->backend->composite_trapezoids) {
|
|
|
|
|
status = dst->backend->composite_trapezoids (operator,
|
|
|
|
|
pattern, dst,
|
2005-08-08 18:35:22 +00:00
|
|
|
antialias,
|
2005-04-07 14:25:00 +00:00
|
|
|
src_x, src_y,
|
|
|
|
|
dst_x, dst_y,
|
|
|
|
|
width, height,
|
|
|
|
|
traps, num_traps);
|
|
|
|
|
if (status != CAIRO_INT_STATUS_UNSUPPORTED)
|
|
|
|
|
return status;
|
|
|
|
|
}
|
2003-10-31 10:41:37 +00:00
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
return _fallback_composite_trapezoids (operator, pattern, dst,
|
2005-08-08 18:35:22 +00:00
|
|
|
antialias,
|
2005-07-27 15:39:34 +00:00
|
|
|
src_x, src_y,
|
|
|
|
|
dst_x, dst_y,
|
|
|
|
|
width, height,
|
|
|
|
|
traps, num_traps);
|
2003-07-18 11:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
2003-11-03 19:17:31 +00:00
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_copy_page (cairo_surface_t *surface)
|
|
|
|
|
{
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2003-11-03 19:17:31 +00:00
|
|
|
/* It's fine if some backends just don't support this. */
|
2005-04-07 14:25:00 +00:00
|
|
|
if (surface->backend->copy_page == NULL)
|
2003-11-03 19:17:31 +00:00
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
return surface->backend->copy_page (surface);
|
2003-11-03 19:17:31 +00:00
|
|
|
}
|
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_show_page (cairo_surface_t *surface)
|
|
|
|
|
{
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! surface->is_snapshot);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2003-10-31 21:30:35 +00:00
|
|
|
/* It's fine if some backends just don't support this. */
|
2005-04-07 14:25:00 +00:00
|
|
|
if (surface->backend->show_page == NULL)
|
2003-10-31 21:30:35 +00:00
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
return surface->backend->show_page (surface);
|
2003-10-31 21:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
/**
|
2005-06-15 16:52:11 +00:00
|
|
|
* _cairo_surface_get_current_clip_serial:
|
2005-05-26 11:35:44 +00:00
|
|
|
* @surface: the #cairo_surface_t to return the serial number for
|
|
|
|
|
*
|
|
|
|
|
* Returns the serial number associated with the current
|
|
|
|
|
* clip in the surface. All gstate functions must
|
|
|
|
|
* verify that the correct clip is set in the surface before
|
|
|
|
|
* invoking any surface drawing function
|
|
|
|
|
*/
|
2005-07-15 13:59:47 +00:00
|
|
|
unsigned int
|
2005-05-26 11:35:44 +00:00
|
|
|
_cairo_surface_get_current_clip_serial (cairo_surface_t *surface)
|
2004-03-19 15:47:25 +00:00
|
|
|
{
|
2005-05-26 11:35:44 +00:00
|
|
|
return surface->current_clip_serial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_allocate_clip_serial:
|
|
|
|
|
* @surface: the #cairo_surface_t to allocate a serial number from
|
|
|
|
|
*
|
2005-07-27 15:39:34 +00:00
|
|
|
* Each surface has a separate set of clipping serial numbers, and
|
|
|
|
|
* this function allocates one from the specified surface. As zero is
|
|
|
|
|
* reserved for the special no-clipping case, this function will not
|
|
|
|
|
* return that except for an in-error surface, (ie. surface->status !=
|
|
|
|
|
* CAIRO_STATUS_SUCCESS).
|
2005-05-26 11:35:44 +00:00
|
|
|
*/
|
2005-07-15 13:59:47 +00:00
|
|
|
unsigned int
|
2005-05-26 11:35:44 +00:00
|
|
|
_cairo_surface_allocate_clip_serial (cairo_surface_t *surface)
|
|
|
|
|
{
|
|
|
|
|
unsigned int serial;
|
2005-07-27 15:39:34 +00:00
|
|
|
|
|
|
|
|
if (surface->status)
|
|
|
|
|
return 0;
|
2005-05-26 11:35:44 +00:00
|
|
|
|
|
|
|
|
if ((serial = ++(surface->next_clip_serial)) == 0)
|
|
|
|
|
serial = ++(surface->next_clip_serial);
|
|
|
|
|
return serial;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_reset_clip:
|
|
|
|
|
* @surface: the #cairo_surface_t to reset the clip on
|
|
|
|
|
*
|
|
|
|
|
* This function sets the clipping for the surface to
|
|
|
|
|
* None, which is to say that drawing is entirely
|
|
|
|
|
* unclipped. It also sets the clip serial number
|
|
|
|
|
* to zero.
|
|
|
|
|
*/
|
2005-07-15 13:59:47 +00:00
|
|
|
cairo_status_t
|
2005-05-26 11:35:44 +00:00
|
|
|
_cairo_surface_reset_clip (cairo_surface_t *surface)
|
|
|
|
|
{
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
2005-07-27 16:23:11 +00:00
|
|
|
return surface->status;
|
2005-07-27 15:39:34 +00:00
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
2005-05-02 13:39:30 +00:00
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
surface->current_clip_serial = 0;
|
2005-06-14 19:45:22 +00:00
|
|
|
|
|
|
|
|
if (surface->backend->intersect_clip_path) {
|
|
|
|
|
status = surface->backend->intersect_clip_path (surface,
|
|
|
|
|
NULL,
|
|
|
|
|
CAIRO_FILL_RULE_WINDING,
|
2005-08-08 18:35:22 +00:00
|
|
|
0,
|
|
|
|
|
CAIRO_ANTIALIAS_DEFAULT);
|
2005-06-10 12:18:20 +00:00
|
|
|
if (status)
|
2005-05-26 11:35:44 +00:00
|
|
|
return status;
|
|
|
|
|
}
|
2005-06-14 19:45:22 +00:00
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
if (surface->backend->set_clip_region != NULL) {
|
|
|
|
|
status = surface->backend->set_clip_region (surface, NULL);
|
2005-06-10 12:18:20 +00:00
|
|
|
if (status)
|
2005-05-26 11:35:44 +00:00
|
|
|
return status;
|
|
|
|
|
}
|
2005-07-27 15:39:34 +00:00
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_set_clip_region:
|
|
|
|
|
* @surface: the #cairo_surface_t to reset the clip on
|
|
|
|
|
* @region: the #pixman_region16_t to use for clipping
|
|
|
|
|
* @serial: the clip serial number associated with the region
|
|
|
|
|
*
|
|
|
|
|
* This function sets the clipping for the surface to
|
|
|
|
|
* the specified region and sets the surface clipping
|
|
|
|
|
* serial number to the associated serial number.
|
|
|
|
|
*/
|
2005-07-15 13:59:47 +00:00
|
|
|
cairo_status_t
|
2005-05-26 11:35:44 +00:00
|
|
|
_cairo_surface_set_clip_region (cairo_surface_t *surface,
|
|
|
|
|
pixman_region16_t *region,
|
|
|
|
|
unsigned int serial)
|
|
|
|
|
{
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
|
|
|
|
assert (surface->backend->set_clip_region != NULL);
|
2005-05-02 13:39:30 +00:00
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
surface->current_clip_serial = serial;
|
2005-07-27 15:39:34 +00:00
|
|
|
|
2004-03-19 15:47:25 +00:00
|
|
|
return surface->backend->set_clip_region (surface, region);
|
|
|
|
|
}
|
2005-03-16 12:08:41 +00:00
|
|
|
|
2005-07-15 13:59:47 +00:00
|
|
|
cairo_int_status_t
|
2005-07-01 12:45:35 +00:00
|
|
|
_cairo_surface_intersect_clip_path (cairo_surface_t *surface,
|
|
|
|
|
cairo_path_fixed_t *path,
|
|
|
|
|
cairo_fill_rule_t fill_rule,
|
2005-08-08 18:35:22 +00:00
|
|
|
double tolerance,
|
|
|
|
|
cairo_antialias_t antialias)
|
2005-07-01 12:45:35 +00:00
|
|
|
{
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-07-01 12:45:35 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
|
|
|
|
assert (surface->backend->intersect_clip_path != NULL);
|
|
|
|
|
|
|
|
|
|
return surface->backend->intersect_clip_path (surface,
|
|
|
|
|
path,
|
|
|
|
|
fill_rule,
|
2005-08-08 18:35:22 +00:00
|
|
|
tolerance,
|
|
|
|
|
antialias);
|
2005-07-01 12:45:35 +00:00
|
|
|
}
|
|
|
|
|
|
2005-06-14 19:45:22 +00:00
|
|
|
static cairo_status_t
|
|
|
|
|
_cairo_surface_set_clip_path_recursive (cairo_surface_t *surface,
|
|
|
|
|
cairo_clip_path_t *clip_path)
|
2005-05-02 13:39:30 +00:00
|
|
|
{
|
2005-06-14 19:45:22 +00:00
|
|
|
cairo_status_t status;
|
|
|
|
|
|
|
|
|
|
if (clip_path == NULL)
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
status = _cairo_surface_set_clip_path_recursive (surface, clip_path->prev);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
return surface->backend->intersect_clip_path (surface,
|
|
|
|
|
&clip_path->path,
|
|
|
|
|
clip_path->fill_rule,
|
2005-08-08 18:35:22 +00:00
|
|
|
clip_path->tolerance,
|
|
|
|
|
clip_path->antialias);
|
2005-05-02 13:39:30 +00:00
|
|
|
}
|
|
|
|
|
|
2005-06-14 19:45:22 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_set_clip_path:
|
2005-08-08 13:50:59 +00:00
|
|
|
* @surface: the #cairo_surface_t to set the clip on
|
|
|
|
|
* @clip_path: the clip path to set
|
|
|
|
|
* @serial: the clip serial number associated with the clip path
|
2005-06-14 19:45:22 +00:00
|
|
|
*
|
2005-08-08 13:50:59 +00:00
|
|
|
* Sets the given clipping path for the surface and assigns the
|
|
|
|
|
* clipping serial to the surface.
|
2005-06-14 19:45:22 +00:00
|
|
|
**/
|
2005-08-04 22:45:59 +00:00
|
|
|
static cairo_status_t
|
2005-06-14 19:45:22 +00:00
|
|
|
_cairo_surface_set_clip_path (cairo_surface_t *surface,
|
|
|
|
|
cairo_clip_path_t *clip_path,
|
|
|
|
|
unsigned int serial)
|
2005-05-26 11:35:44 +00:00
|
|
|
{
|
2005-06-14 19:45:22 +00:00
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-06-14 19:45:22 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
|
|
|
|
assert (surface->backend->intersect_clip_path != NULL);
|
|
|
|
|
|
|
|
|
|
status = surface->backend->intersect_clip_path (surface,
|
|
|
|
|
NULL,
|
|
|
|
|
CAIRO_FILL_RULE_WINDING,
|
2005-08-08 18:35:22 +00:00
|
|
|
0,
|
|
|
|
|
CAIRO_ANTIALIAS_DEFAULT);
|
2005-06-14 19:45:22 +00:00
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
status = _cairo_surface_set_clip_path_recursive (surface, clip_path);
|
|
|
|
|
if (status)
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
surface->current_clip_serial = serial;
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2005-05-26 11:35:44 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-04 22:45:59 +00:00
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_set_clip (cairo_surface_t *surface, cairo_clip_t *clip)
|
|
|
|
|
{
|
|
|
|
|
if (!surface)
|
|
|
|
|
return CAIRO_STATUS_NULL_POINTER;
|
2005-10-27 15:06:53 +00:00
|
|
|
|
|
|
|
|
surface->clip = clip;
|
|
|
|
|
|
2005-08-04 22:45:59 +00:00
|
|
|
if (clip->serial == _cairo_surface_get_current_clip_serial (surface))
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
2005-10-27 15:06:53 +00:00
|
|
|
|
2005-08-04 22:45:59 +00:00
|
|
|
if (clip->path)
|
|
|
|
|
return _cairo_surface_set_clip_path (surface,
|
|
|
|
|
clip->path,
|
|
|
|
|
clip->serial);
|
|
|
|
|
|
|
|
|
|
if (clip->region)
|
|
|
|
|
return _cairo_surface_set_clip_region (surface,
|
|
|
|
|
clip->region,
|
|
|
|
|
clip->serial);
|
|
|
|
|
|
|
|
|
|
return _cairo_surface_reset_clip (surface);
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-26 11:35:44 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_get_extents:
|
|
|
|
|
* @surface: the #cairo_surface_t to fetch extents for
|
|
|
|
|
*
|
|
|
|
|
* This function returns a bounding box for the surface. The
|
|
|
|
|
* surface bounds are defined as a region beyond which no
|
|
|
|
|
* rendering will possibly be recorded, in otherwords,
|
|
|
|
|
* it is the maximum extent of potentially usable
|
|
|
|
|
* coordinates. For simple pixel-based surfaces,
|
|
|
|
|
* it can be a close bound on the retained pixel
|
|
|
|
|
* region. For virtual surfaces (PDF et al), it
|
|
|
|
|
* cannot and must extend to the reaches of the
|
|
|
|
|
* target system coordinate space.
|
|
|
|
|
*/
|
|
|
|
|
|
2005-04-19 16:29:04 +00:00
|
|
|
cairo_status_t
|
2005-05-26 11:35:44 +00:00
|
|
|
_cairo_surface_get_extents (cairo_surface_t *surface,
|
|
|
|
|
cairo_rectangle_t *rectangle)
|
2005-04-19 16:29:04 +00:00
|
|
|
{
|
2005-07-27 15:39:34 +00:00
|
|
|
if (surface->status)
|
|
|
|
|
return surface->status;
|
|
|
|
|
|
2005-04-19 16:29:04 +00:00
|
|
|
if (surface->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
|
|
|
|
return surface->backend->get_extents (surface, rectangle);
|
|
|
|
|
}
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
cairo_status_t
|
2005-04-07 11:03:59 +00:00
|
|
|
_cairo_surface_show_glyphs (cairo_scaled_font_t *scaled_font,
|
2005-03-16 12:08:41 +00:00
|
|
|
cairo_operator_t operator,
|
|
|
|
|
cairo_pattern_t *pattern,
|
|
|
|
|
cairo_surface_t *dst,
|
|
|
|
|
int source_x,
|
|
|
|
|
int source_y,
|
|
|
|
|
int dest_x,
|
|
|
|
|
int dest_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height,
|
|
|
|
|
const cairo_glyph_t *glyphs,
|
|
|
|
|
int num_glyphs)
|
|
|
|
|
{
|
|
|
|
|
cairo_status_t status;
|
|
|
|
|
|
2005-10-13 21:00:52 +00:00
|
|
|
assert (! dst->is_snapshot);
|
|
|
|
|
|
2005-07-27 15:39:34 +00:00
|
|
|
if (dst->status)
|
|
|
|
|
return dst->status;
|
|
|
|
|
|
2005-03-16 12:08:41 +00:00
|
|
|
if (dst->finished)
|
|
|
|
|
return CAIRO_STATUS_SURFACE_FINISHED;
|
|
|
|
|
|
2005-04-07 14:25:00 +00:00
|
|
|
if (dst->backend->show_glyphs)
|
2005-04-07 11:03:59 +00:00
|
|
|
status = dst->backend->show_glyphs (scaled_font, operator, pattern, dst,
|
2005-03-16 12:08:41 +00:00
|
|
|
source_x, source_y,
|
|
|
|
|
dest_x, dest_y,
|
|
|
|
|
width, height,
|
|
|
|
|
glyphs, num_glyphs);
|
|
|
|
|
else
|
|
|
|
|
status = CAIRO_INT_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
2005-08-08 13:46:11 +00:00
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
static cairo_status_t
|
|
|
|
|
_cairo_surface_composite_fixup_unbounded_internal (cairo_surface_t *dst,
|
|
|
|
|
cairo_rectangle_t *src_rectangle,
|
|
|
|
|
cairo_rectangle_t *mask_rectangle,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height)
|
|
|
|
|
{
|
|
|
|
|
cairo_rectangle_t dst_rectangle;
|
|
|
|
|
cairo_rectangle_t drawn_rectangle;
|
|
|
|
|
pixman_region16_t *drawn_region;
|
|
|
|
|
pixman_region16_t *clear_region;
|
|
|
|
|
cairo_status_t status = CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
|
|
/* The area that was drawn is the area in the destination rectangle but not within
|
|
|
|
|
* the source or the mask.
|
|
|
|
|
*/
|
|
|
|
|
dst_rectangle.x = dst_x;
|
|
|
|
|
dst_rectangle.y = dst_y;
|
|
|
|
|
dst_rectangle.width = width;
|
|
|
|
|
dst_rectangle.height = height;
|
|
|
|
|
|
|
|
|
|
drawn_rectangle = dst_rectangle;
|
|
|
|
|
|
|
|
|
|
if (src_rectangle)
|
|
|
|
|
_cairo_rectangle_intersect (&drawn_rectangle, src_rectangle);
|
|
|
|
|
|
|
|
|
|
if (mask_rectangle)
|
|
|
|
|
_cairo_rectangle_intersect (&drawn_rectangle, mask_rectangle);
|
|
|
|
|
|
|
|
|
|
/* Now compute the area that is in dst_rectangle but not in drawn_rectangle
|
|
|
|
|
*/
|
|
|
|
|
drawn_region = _cairo_region_create_from_rectangle (&drawn_rectangle);
|
|
|
|
|
clear_region = _cairo_region_create_from_rectangle (&dst_rectangle);
|
|
|
|
|
if (!drawn_region || !clear_region) {
|
|
|
|
|
status = CAIRO_STATUS_NO_MEMORY;
|
|
|
|
|
goto CLEANUP_REGIONS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pixman_region_subtract (clear_region, clear_region, drawn_region) != PIXMAN_REGION_STATUS_SUCCESS) {
|
|
|
|
|
status = CAIRO_STATUS_NO_MEMORY;
|
|
|
|
|
goto CLEANUP_REGIONS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
status = _cairo_surface_fill_region (dst, CAIRO_OPERATOR_SOURCE,
|
|
|
|
|
CAIRO_COLOR_TRANSPARENT,
|
|
|
|
|
clear_region);
|
|
|
|
|
|
|
|
|
|
CLEANUP_REGIONS:
|
|
|
|
|
if (drawn_region)
|
|
|
|
|
pixman_region_destroy (drawn_region);
|
|
|
|
|
if (clear_region)
|
|
|
|
|
pixman_region_destroy (clear_region);
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* _cairo_surface_composite_fixup_unbounded:
|
|
|
|
|
* @dst: the destination surface
|
|
|
|
|
* @src_attr: source surface attributes (from _cairo_pattern_acquire_surface())
|
|
|
|
|
* @src_width: width of source surface
|
|
|
|
|
* @src_height: height of source surface
|
|
|
|
|
* @mask_attr: mask surface attributes or %NULL if no mask
|
|
|
|
|
* @mask_width: width of mask surface
|
|
|
|
|
* @mask_height: height of mask surface
|
|
|
|
|
* @src_x: @src_x from _cairo_surface_composite()
|
|
|
|
|
* @src_y: @src_y from _cairo_surface_composite()
|
|
|
|
|
* @mask_x: @mask_x from _cairo_surface_composite()
|
|
|
|
|
* @mask_y: @mask_y from _cairo_surface_composite()
|
|
|
|
|
* @dst_x: @dst_x from _cairo_surface_composite()
|
|
|
|
|
* @dst_y: @dst_y from _cairo_surface_composite()
|
|
|
|
|
* @width: @width from _cairo_surface_composite()
|
|
|
|
|
* @height: @height_x from _cairo_surface_composite()
|
|
|
|
|
*
|
|
|
|
|
* Eeek! Too many parameters! This is a helper function to take care of fixing
|
|
|
|
|
* up for bugs in libpixman and RENDER where, when asked to composite an
|
|
|
|
|
* untransformed surface with an unbounded operator (like CLEAR or SOURCE)
|
|
|
|
|
* only the region inside both the source and the mask is affected.
|
|
|
|
|
* This function clears the region that should have been drawn but was wasn't.
|
|
|
|
|
**/
|
2005-08-16 18:22:16 +00:00
|
|
|
cairo_status_t
|
2005-08-08 13:46:11 +00:00
|
|
|
_cairo_surface_composite_fixup_unbounded (cairo_surface_t *dst,
|
|
|
|
|
cairo_surface_attributes_t *src_attr,
|
|
|
|
|
int src_width,
|
|
|
|
|
int src_height,
|
|
|
|
|
cairo_surface_attributes_t *mask_attr,
|
|
|
|
|
int mask_width,
|
|
|
|
|
int mask_height,
|
|
|
|
|
int src_x,
|
|
|
|
|
int src_y,
|
|
|
|
|
int mask_x,
|
|
|
|
|
int mask_y,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height)
|
|
|
|
|
{
|
2005-08-16 18:22:16 +00:00
|
|
|
cairo_rectangle_t src_tmp, mask_tmp;
|
|
|
|
|
cairo_rectangle_t *src_rectangle = NULL;
|
|
|
|
|
cairo_rectangle_t *mask_rectangle = NULL;
|
2005-10-13 21:00:52 +00:00
|
|
|
|
|
|
|
|
assert (! dst->is_snapshot);
|
2005-08-16 18:22:16 +00:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
/* The RENDER/libpixman operators are clipped to the bounds of the untransformed,
|
|
|
|
|
* non-repeating sources and masks. Other sources and masks can be ignored.
|
|
|
|
|
*/
|
2005-08-16 18:22:16 +00:00
|
|
|
if (_cairo_matrix_is_integer_translation (&src_attr->matrix, NULL, NULL) &&
|
|
|
|
|
src_attr->extend == CAIRO_EXTEND_NONE)
|
|
|
|
|
{
|
|
|
|
|
src_tmp.x = (dst_x - (src_x + src_attr->x_offset));
|
|
|
|
|
src_tmp.y = (dst_y - (src_y + src_attr->y_offset));
|
|
|
|
|
src_tmp.width = src_width;
|
|
|
|
|
src_tmp.height = src_height;
|
2005-08-08 13:46:11 +00:00
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
src_rectangle = &src_tmp;
|
2005-08-08 13:46:11 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
if (mask_attr &&
|
|
|
|
|
_cairo_matrix_is_integer_translation (&mask_attr->matrix, NULL, NULL) &&
|
|
|
|
|
mask_attr->extend == CAIRO_EXTEND_NONE)
|
|
|
|
|
{
|
|
|
|
|
mask_tmp.x = (dst_x - (mask_x + mask_attr->x_offset));
|
|
|
|
|
mask_tmp.y = (dst_y - (mask_y + mask_attr->y_offset));
|
|
|
|
|
mask_tmp.width = mask_width;
|
|
|
|
|
mask_tmp.height = mask_height;
|
2005-08-08 13:46:11 +00:00
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
mask_rectangle = &mask_tmp;
|
2005-08-08 13:46:11 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
return _cairo_surface_composite_fixup_unbounded_internal (dst, src_rectangle, mask_rectangle,
|
|
|
|
|
dst_x, dst_y, width, height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _cairo_surface_composite_shape_fixup_unbounded:
|
|
|
|
|
* @dst: the destination surface
|
|
|
|
|
* @src_attr: source surface attributes (from _cairo_pattern_acquire_surface())
|
|
|
|
|
* @src_width: width of source surface
|
|
|
|
|
* @src_height: height of source surface
|
|
|
|
|
* @mask_width: width of mask surface
|
|
|
|
|
* @mask_height: height of mask surface
|
|
|
|
|
* @src_x: @src_x from _cairo_surface_composite()
|
|
|
|
|
* @src_y: @src_y from _cairo_surface_composite()
|
|
|
|
|
* @mask_x: @mask_x from _cairo_surface_composite()
|
|
|
|
|
* @mask_y: @mask_y from _cairo_surface_composite()
|
|
|
|
|
* @dst_x: @dst_x from _cairo_surface_composite()
|
|
|
|
|
* @dst_y: @dst_y from _cairo_surface_composite()
|
|
|
|
|
* @width: @width from _cairo_surface_composite()
|
|
|
|
|
* @height: @height_x from _cairo_surface_composite()
|
|
|
|
|
*
|
|
|
|
|
* Like _cairo_surface_composite_fixup_unbounded(), but instead of
|
|
|
|
|
* handling the case where we have a source pattern and a mask
|
|
|
|
|
* pattern, handle the case where we are compositing a source pattern
|
|
|
|
|
* using a mask we create ourselves, as in
|
|
|
|
|
* _cairo_surface_composite_glyphs() or _cairo_surface_composite_trapezoids()
|
|
|
|
|
**/
|
|
|
|
|
cairo_status_t
|
|
|
|
|
_cairo_surface_composite_shape_fixup_unbounded (cairo_surface_t *dst,
|
|
|
|
|
cairo_surface_attributes_t *src_attr,
|
|
|
|
|
int src_width,
|
|
|
|
|
int src_height,
|
|
|
|
|
int mask_width,
|
|
|
|
|
int mask_height,
|
|
|
|
|
int src_x,
|
|
|
|
|
int src_y,
|
|
|
|
|
int mask_x,
|
|
|
|
|
int mask_y,
|
|
|
|
|
int dst_x,
|
|
|
|
|
int dst_y,
|
|
|
|
|
unsigned int width,
|
|
|
|
|
unsigned int height)
|
|
|
|
|
{
|
|
|
|
|
cairo_rectangle_t src_tmp, mask_tmp;
|
|
|
|
|
cairo_rectangle_t *src_rectangle = NULL;
|
|
|
|
|
cairo_rectangle_t *mask_rectangle = NULL;
|
2005-10-13 21:00:52 +00:00
|
|
|
|
|
|
|
|
assert (! dst->is_snapshot);
|
2005-08-16 18:22:16 +00:00
|
|
|
|
|
|
|
|
/* The RENDER/libpixman operators are clipped to the bounds of the untransformed,
|
|
|
|
|
* non-repeating sources and masks. Other sources and masks can be ignored.
|
2005-08-08 13:46:11 +00:00
|
|
|
*/
|
2005-08-16 18:22:16 +00:00
|
|
|
if (_cairo_matrix_is_integer_translation (&src_attr->matrix, NULL, NULL) &&
|
|
|
|
|
src_attr->extend == CAIRO_EXTEND_NONE)
|
2005-08-08 13:46:11 +00:00
|
|
|
{
|
2005-08-16 18:22:16 +00:00
|
|
|
src_tmp.x = (dst_x - (src_x + src_attr->x_offset));
|
|
|
|
|
src_tmp.y = (dst_y - (src_y + src_attr->y_offset));
|
|
|
|
|
src_tmp.width = src_width;
|
|
|
|
|
src_tmp.height = src_height;
|
|
|
|
|
|
|
|
|
|
src_rectangle = &src_tmp;
|
2005-08-08 13:46:11 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-16 18:22:16 +00:00
|
|
|
mask_tmp.x = dst_x - mask_x;
|
|
|
|
|
mask_tmp.y = dst_y - mask_y;
|
|
|
|
|
mask_tmp.width = mask_width;
|
|
|
|
|
mask_tmp.height = mask_height;
|
|
|
|
|
|
|
|
|
|
mask_rectangle = &mask_tmp;
|
|
|
|
|
|
|
|
|
|
return _cairo_surface_composite_fixup_unbounded_internal (dst, src_rectangle, mask_rectangle,
|
|
|
|
|
dst_x, dst_y, width, height);
|
|
|
|
|
}
|