2008-02-25 21:06:21 -05:00
|
|
|
|
/* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */
|
|
|
|
|
|
/* cairo - a vector graphics library with display and print output
|
|
|
|
|
|
*
|
|
|
|
|
|
* Copyright <EFBFBD> 2008 Mozilla Corporation
|
|
|
|
|
|
*
|
|
|
|
|
|
* 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
|
2010-04-27 10:17:23 +02:00
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
|
2008-02-25 21:06:21 -05:00
|
|
|
|
* 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.
|
|
|
|
|
|
*
|
2010-05-06 16:07:43 -04:00
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
2008-02-25 21:06:21 -05:00
|
|
|
|
*
|
|
|
|
|
|
* Contributor(s):
|
|
|
|
|
|
* Vladimir Vukicevic <vladimir@mozilla.com>
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "cairoint.h"
|
|
|
|
|
|
|
2012-06-14 08:12:41 +02:00
|
|
|
|
#include "cairo-image-surface-inline.h"
|
2008-03-07 14:49:15 -08:00
|
|
|
|
#include "cairo-quartz-image.h"
|
2008-02-25 21:06:21 -05:00
|
|
|
|
#include "cairo-quartz-private.h"
|
2011-11-09 11:25:32 +01:00
|
|
|
|
#include "cairo-surface-backend-private.h"
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2010-01-18 16:58:40 +00:00
|
|
|
|
#include "cairo-error-private.h"
|
2011-07-19 07:50:47 +02:00
|
|
|
|
#include "cairo-default-context-private.h"
|
2010-01-18 16:58:40 +00:00
|
|
|
|
|
2008-02-25 21:06:21 -05:00
|
|
|
|
#define SURFACE_ERROR_NO_MEMORY (_cairo_surface_create_in_error(_cairo_error(CAIRO_STATUS_NO_MEMORY)))
|
2008-05-10 00:58:07 +02:00
|
|
|
|
#define SURFACE_ERROR_TYPE_MISMATCH (_cairo_surface_create_in_error(_cairo_error(CAIRO_STATUS_SURFACE_TYPE_MISMATCH)))
|
2008-12-15 09:32:43 +01:00
|
|
|
|
#define SURFACE_ERROR_INVALID_SIZE (_cairo_surface_create_in_error(_cairo_error(CAIRO_STATUS_INVALID_SIZE)))
|
2008-02-25 21:06:21 -05:00
|
|
|
|
#define SURFACE_ERROR_INVALID_FORMAT (_cairo_surface_create_in_error(_cairo_error(CAIRO_STATUS_INVALID_FORMAT)))
|
|
|
|
|
|
|
2008-03-07 14:49:15 -08:00
|
|
|
|
static void
|
2020-11-30 17:16:00 -08:00
|
|
|
|
DataProviderReleaseCallback (void *image_info, const void *data, size_t size)
|
2008-03-07 14:49:15 -08:00
|
|
|
|
{
|
2020-11-30 15:13:41 -08:00
|
|
|
|
free (image_info);
|
2008-03-07 14:49:15 -08:00
|
|
|
|
}
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
static cairo_surface_t *
|
|
|
|
|
|
_cairo_quartz_image_surface_create_similar (void *asurface,
|
|
|
|
|
|
cairo_content_t content,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height)
|
|
|
|
|
|
{
|
Remove clip handling from generic surface layer.
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
▏
2009-07-23 15:32:13 +01:00
|
|
|
|
cairo_surface_t *isurf =
|
2009-10-18 08:59:33 +02:00
|
|
|
|
_cairo_image_surface_create_with_content (content, width, height);
|
2011-07-30 17:28:21 +01:00
|
|
|
|
cairo_surface_t *result = cairo_quartz_image_surface_create (isurf);
|
|
|
|
|
|
cairo_surface_destroy (isurf);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_surface_t *
|
|
|
|
|
|
_cairo_quartz_image_surface_create_similar_image (void *asurface,
|
|
|
|
|
|
cairo_format_t format,
|
|
|
|
|
|
int width,
|
|
|
|
|
|
int height)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_surface_t *isurf = cairo_image_surface_create (format, width, height);
|
|
|
|
|
|
cairo_surface_t *result = cairo_quartz_image_surface_create (isurf);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
cairo_surface_destroy (isurf);
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_finish (void *asurface)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t *) asurface;
|
|
|
|
|
|
|
|
|
|
|
|
CGImageRelease (surface->image);
|
2020-11-30 17:16:00 -08:00
|
|
|
|
cairo_surface_destroy (surface->imageSurface);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_acquire_source_image (void *asurface,
|
|
|
|
|
|
cairo_image_surface_t **image_out,
|
|
|
|
|
|
void **image_extra)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t *) asurface;
|
|
|
|
|
|
|
|
|
|
|
|
*image_out = surface->imageSurface;
|
|
|
|
|
|
*image_extra = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2012-04-10 20:15:04 +02:00
|
|
|
|
static cairo_image_surface_t *
|
2011-07-30 17:28:21 +01:00
|
|
|
|
_cairo_quartz_image_surface_map_to_image (void *asurface,
|
|
|
|
|
|
const cairo_rectangle_int_t *extents)
|
2008-02-25 21:06:21 -05:00
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t *) asurface;
|
2012-01-11 17:17:15 +01:00
|
|
|
|
return _cairo_surface_map_to_image (&surface->imageSurface->base, extents);
|
2011-07-30 17:28:21 +01:00
|
|
|
|
}
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
|
static cairo_int_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_unmap_image (void *asurface,
|
|
|
|
|
|
cairo_image_surface_t *image)
|
|
|
|
|
|
{
|
2011-11-09 11:25:32 +01:00
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t *) asurface;
|
2012-01-11 17:17:15 +01:00
|
|
|
|
return _cairo_surface_unmap_image (&surface->imageSurface->base, image);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
Remove clip handling from generic surface layer.
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
▏
2009-07-23 15:32:13 +01:00
|
|
|
|
static cairo_bool_t
|
2008-02-25 21:06:21 -05:00
|
|
|
|
_cairo_quartz_image_surface_get_extents (void *asurface,
|
|
|
|
|
|
cairo_rectangle_int_t *extents)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t *) asurface;
|
|
|
|
|
|
|
2011-04-21 15:23:14 -04:00
|
|
|
|
extents->x = 0;
|
|
|
|
|
|
extents->y = 0;
|
2011-07-30 17:28:21 +01:00
|
|
|
|
extents->width = surface->width;
|
2011-04-21 15:23:14 -04:00
|
|
|
|
extents->height = surface->height;
|
Remove clip handling from generic surface layer.
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
▏
2009-07-23 15:32:13 +01:00
|
|
|
|
return TRUE;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* we assume some drawing happened to the image buffer; make sure it's
|
|
|
|
|
|
* represented in the CGImage on flush()
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_status_t
|
2012-08-13 01:34:12 +01:00
|
|
|
|
_cairo_quartz_image_surface_flush (void *asurface,
|
|
|
|
|
|
unsigned flags)
|
2008-02-25 21:06:21 -05:00
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t *) asurface;
|
|
|
|
|
|
CGImageRef oldImage = surface->image;
|
|
|
|
|
|
CGImageRef newImage = NULL;
|
2020-11-30 17:16:00 -08:00
|
|
|
|
void *image_data;
|
|
|
|
|
|
const unsigned int size = surface->imageSurface->height * surface->imageSurface->stride;
|
2012-08-13 01:34:12 +01:00
|
|
|
|
if (flags)
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
|
/* XXX only flush if the image has been modified. */
|
|
|
|
|
|
|
2020-11-30 17:16:00 -08:00
|
|
|
|
image_data = _cairo_malloc_ab ( surface->imageSurface->height,
|
|
|
|
|
|
surface->imageSurface->stride);
|
|
|
|
|
|
if (unlikely (!image_data))
|
2020-11-30 15:13:41 -08:00
|
|
|
|
return _cairo_error (CAIRO_STATUS_NO_MEMORY);
|
|
|
|
|
|
|
2020-11-30 17:16:00 -08:00
|
|
|
|
memcpy (image_data, surface->imageSurface->data,
|
2020-11-30 15:13:41 -08:00
|
|
|
|
surface->imageSurface->height * surface->imageSurface->stride);
|
2011-11-09 11:25:32 +01:00
|
|
|
|
newImage = CairoQuartzCreateCGImage (surface->imageSurface->format,
|
|
|
|
|
|
surface->imageSurface->width,
|
|
|
|
|
|
surface->imageSurface->height,
|
|
|
|
|
|
surface->imageSurface->stride,
|
2020-11-30 17:16:00 -08:00
|
|
|
|
image_data,
|
2011-11-09 11:25:32 +01:00
|
|
|
|
TRUE,
|
|
|
|
|
|
NULL,
|
|
|
|
|
|
DataProviderReleaseCallback,
|
2020-11-30 17:16:00 -08:00
|
|
|
|
image_data);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
surface->image = newImage;
|
|
|
|
|
|
CGImageRelease (oldImage);
|
|
|
|
|
|
|
|
|
|
|
|
return CAIRO_STATUS_SUCCESS;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
|
static cairo_int_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_paint (void *abstract_surface,
|
|
|
|
|
|
cairo_operator_t op,
|
|
|
|
|
|
const cairo_pattern_t *source,
|
|
|
|
|
|
const cairo_clip_t *clip)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = abstract_surface;
|
|
|
|
|
|
return _cairo_surface_paint (&surface->imageSurface->base,
|
|
|
|
|
|
op, source, clip);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_int_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_mask (void *abstract_surface,
|
|
|
|
|
|
cairo_operator_t op,
|
|
|
|
|
|
const cairo_pattern_t *source,
|
|
|
|
|
|
const cairo_pattern_t *mask,
|
|
|
|
|
|
const cairo_clip_t *clip)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = abstract_surface;
|
|
|
|
|
|
return _cairo_surface_mask (&surface->imageSurface->base,
|
|
|
|
|
|
op, source, mask, clip);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_int_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_stroke (void *abstract_surface,
|
|
|
|
|
|
cairo_operator_t op,
|
|
|
|
|
|
const cairo_pattern_t *source,
|
|
|
|
|
|
const cairo_path_fixed_t *path,
|
|
|
|
|
|
const cairo_stroke_style_t *style,
|
|
|
|
|
|
const cairo_matrix_t *ctm,
|
|
|
|
|
|
const cairo_matrix_t *ctm_inverse,
|
|
|
|
|
|
double tolerance,
|
|
|
|
|
|
cairo_antialias_t antialias,
|
|
|
|
|
|
const cairo_clip_t *clip)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = abstract_surface;
|
|
|
|
|
|
return _cairo_surface_stroke (&surface->imageSurface->base,
|
|
|
|
|
|
op, source, path,
|
|
|
|
|
|
style, ctm, ctm_inverse,
|
|
|
|
|
|
tolerance, antialias, clip);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_int_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_fill (void *abstract_surface,
|
|
|
|
|
|
cairo_operator_t op,
|
|
|
|
|
|
const cairo_pattern_t *source,
|
|
|
|
|
|
const cairo_path_fixed_t *path,
|
|
|
|
|
|
cairo_fill_rule_t fill_rule,
|
|
|
|
|
|
double tolerance,
|
|
|
|
|
|
cairo_antialias_t antialias,
|
|
|
|
|
|
const cairo_clip_t *clip)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = abstract_surface;
|
|
|
|
|
|
return _cairo_surface_fill (&surface->imageSurface->base,
|
|
|
|
|
|
op, source, path,
|
|
|
|
|
|
fill_rule, tolerance, antialias,
|
|
|
|
|
|
clip);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static cairo_int_status_t
|
|
|
|
|
|
_cairo_quartz_image_surface_glyphs (void *abstract_surface,
|
|
|
|
|
|
cairo_operator_t op,
|
|
|
|
|
|
const cairo_pattern_t *source,
|
|
|
|
|
|
cairo_glyph_t *glyphs,
|
|
|
|
|
|
int num_glyphs,
|
|
|
|
|
|
cairo_scaled_font_t *scaled_font,
|
|
|
|
|
|
const cairo_clip_t *clip)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = abstract_surface;
|
2011-11-09 11:25:32 +01:00
|
|
|
|
return _cairo_surface_show_text_glyphs (&surface->imageSurface->base,
|
|
|
|
|
|
op, source,
|
|
|
|
|
|
NULL, 0,
|
|
|
|
|
|
glyphs, num_glyphs,
|
|
|
|
|
|
NULL, 0, 0,
|
|
|
|
|
|
scaled_font, clip);
|
2011-07-30 17:28:21 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-02-25 21:06:21 -05:00
|
|
|
|
static const cairo_surface_backend_t cairo_quartz_image_surface_backend = {
|
|
|
|
|
|
CAIRO_SURFACE_TYPE_QUARTZ_IMAGE,
|
2011-07-22 00:36:03 +01:00
|
|
|
|
_cairo_quartz_image_surface_finish,
|
|
|
|
|
|
|
2010-04-23 19:45:26 +01:00
|
|
|
|
_cairo_default_context_create,
|
|
|
|
|
|
|
2008-02-25 21:06:21 -05:00
|
|
|
|
_cairo_quartz_image_surface_create_similar,
|
2011-07-30 17:28:21 +01:00
|
|
|
|
_cairo_quartz_image_surface_create_similar_image,
|
|
|
|
|
|
_cairo_quartz_image_surface_map_to_image,
|
|
|
|
|
|
_cairo_quartz_image_surface_unmap_image,
|
2011-07-22 00:36:03 +01:00
|
|
|
|
|
2012-02-09 13:01:17 +00:00
|
|
|
|
_cairo_surface_default_source,
|
2008-02-25 21:06:21 -05:00
|
|
|
|
_cairo_quartz_image_surface_acquire_source_image,
|
|
|
|
|
|
NULL, /* release_source_image */
|
2011-07-30 17:28:21 +01:00
|
|
|
|
NULL, /* snapshot */
|
|
|
|
|
|
|
2008-02-25 21:06:21 -05:00
|
|
|
|
NULL, /* copy_page */
|
|
|
|
|
|
NULL, /* show_page */
|
2011-07-30 17:28:21 +01:00
|
|
|
|
|
2008-02-25 21:06:21 -05:00
|
|
|
|
_cairo_quartz_image_surface_get_extents,
|
|
|
|
|
|
NULL, /* get_font_options */
|
2011-07-30 17:28:21 +01:00
|
|
|
|
|
2008-02-25 21:06:21 -05:00
|
|
|
|
_cairo_quartz_image_surface_flush,
|
|
|
|
|
|
NULL, /* mark_dirty_rectangle */
|
|
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
|
_cairo_quartz_image_surface_paint,
|
|
|
|
|
|
_cairo_quartz_image_surface_mask,
|
|
|
|
|
|
_cairo_quartz_image_surface_stroke,
|
|
|
|
|
|
_cairo_quartz_image_surface_fill,
|
2011-11-09 11:25:32 +01:00
|
|
|
|
NULL, /* fill-stroke */
|
2011-07-30 17:28:21 +01:00
|
|
|
|
_cairo_quartz_image_surface_glyphs,
|
2008-02-25 21:06:21 -05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2012-03-03 23:31:25 +01:00
|
|
|
|
* cairo_quartz_image_surface_create:
|
|
|
|
|
|
* @image_surface: a cairo image surface to wrap with a quartz image surface
|
2008-02-25 21:06:21 -05:00
|
|
|
|
*
|
|
|
|
|
|
* Creates a Quartz surface backed by a CGImageRef that references the
|
|
|
|
|
|
* given image surface. The resulting surface can be rendered quickly
|
|
|
|
|
|
* when used as a source when rendering to a #cairo_quartz_surface. If
|
2008-02-28 13:02:27 -08:00
|
|
|
|
* the data in the image surface is ever updated, cairo_surface_flush()
|
2008-02-25 21:06:21 -05:00
|
|
|
|
* must be called on the #cairo_quartz_image_surface to ensure that the
|
|
|
|
|
|
* CGImageRef refers to the updated data.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Return value: the newly created surface.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Since: 1.6
|
2012-02-16 00:31:47 +01:00
|
|
|
|
**/
|
2008-02-25 21:06:21 -05:00
|
|
|
|
cairo_surface_t *
|
2008-07-18 15:55:11 -07:00
|
|
|
|
cairo_quartz_image_surface_create (cairo_surface_t *surface)
|
2008-02-25 21:06:21 -05:00
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *qisurf;
|
|
|
|
|
|
|
|
|
|
|
|
CGImageRef image;
|
|
|
|
|
|
|
|
|
|
|
|
cairo_image_surface_t *image_surface;
|
|
|
|
|
|
int width, height, stride;
|
|
|
|
|
|
cairo_format_t format;
|
2020-11-30 17:16:00 -08:00
|
|
|
|
void *image_data;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2011-07-30 17:28:21 +01:00
|
|
|
|
if (surface->status)
|
|
|
|
|
|
return surface;
|
|
|
|
|
|
|
2012-06-01 17:46:25 +01:00
|
|
|
|
if (! _cairo_surface_is_image (surface))
|
2008-05-10 00:58:07 +02:00
|
|
|
|
return SURFACE_ERROR_TYPE_MISMATCH;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2008-07-18 15:55:11 -07:00
|
|
|
|
image_surface = (cairo_image_surface_t*) surface;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
width = image_surface->width;
|
|
|
|
|
|
height = image_surface->height;
|
|
|
|
|
|
stride = image_surface->stride;
|
|
|
|
|
|
format = image_surface->format;
|
|
|
|
|
|
|
|
|
|
|
|
if (!_cairo_quartz_verify_surface_size(width, height))
|
2008-12-15 09:32:43 +01:00
|
|
|
|
return SURFACE_ERROR_INVALID_SIZE;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
if (width == 0 || height == 0)
|
2008-12-15 09:32:43 +01:00
|
|
|
|
return SURFACE_ERROR_INVALID_SIZE;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
if (format != CAIRO_FORMAT_ARGB32 && format != CAIRO_FORMAT_RGB24)
|
|
|
|
|
|
return SURFACE_ERROR_INVALID_FORMAT;
|
|
|
|
|
|
|
2017-07-08 09:28:03 +09:30
|
|
|
|
qisurf = _cairo_malloc (sizeof(cairo_quartz_image_surface_t));
|
2008-02-25 21:06:21 -05:00
|
|
|
|
if (qisurf == NULL)
|
|
|
|
|
|
return SURFACE_ERROR_NO_MEMORY;
|
|
|
|
|
|
|
|
|
|
|
|
memset (qisurf, 0, sizeof(cairo_quartz_image_surface_t));
|
|
|
|
|
|
|
2020-11-30 17:16:00 -08:00
|
|
|
|
image_data = _cairo_malloc_ab (height, stride);
|
|
|
|
|
|
if (unlikely (!image_data))
|
2020-11-30 15:13:41 -08:00
|
|
|
|
return _cairo_error (CAIRO_STATUS_NO_MEMORY);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2020-11-30 17:16:00 -08:00
|
|
|
|
memcpy (image_data, image_surface->data, height * stride);
|
2011-11-09 11:25:32 +01:00
|
|
|
|
image = CairoQuartzCreateCGImage (format,
|
|
|
|
|
|
width, height,
|
|
|
|
|
|
stride,
|
2020-11-30 17:16:00 -08:00
|
|
|
|
image_data,
|
2011-11-09 11:25:32 +01:00
|
|
|
|
TRUE,
|
|
|
|
|
|
NULL,
|
|
|
|
|
|
DataProviderReleaseCallback,
|
2020-11-30 17:16:00 -08:00
|
|
|
|
image_data);
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
if (!image) {
|
|
|
|
|
|
free (qisurf);
|
|
|
|
|
|
return SURFACE_ERROR_NO_MEMORY;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_cairo_surface_init (&qisurf->base,
|
|
|
|
|
|
&cairo_quartz_image_surface_backend,
|
2010-01-18 21:53:42 +00:00
|
|
|
|
NULL, /* device */
|
2015-10-17 22:02:11 +10:30
|
|
|
|
_cairo_content_from_format (format),
|
|
|
|
|
|
FALSE); /* is_vector */
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
2011-04-21 15:23:14 -04:00
|
|
|
|
qisurf->width = width;
|
|
|
|
|
|
qisurf->height = height;
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
qisurf->image = image;
|
|
|
|
|
|
qisurf->imageSurface = image_surface;
|
|
|
|
|
|
|
|
|
|
|
|
return &qisurf->base;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cairo_surface_t *
|
|
|
|
|
|
cairo_quartz_image_surface_get_image (cairo_surface_t *asurface)
|
|
|
|
|
|
{
|
|
|
|
|
|
cairo_quartz_image_surface_t *surface = (cairo_quartz_image_surface_t*) asurface;
|
|
|
|
|
|
|
2014-09-25 08:38:50 +05:30
|
|
|
|
/* Throw an error for a non-quartz surface */
|
2014-10-03 11:52:32 -07:00
|
|
|
|
if (! _cairo_surface_is_quartz (asurface)) {
|
2014-09-22 15:41:24 -07:00
|
|
|
|
return _cairo_surface_create_in_error (_cairo_error (CAIRO_STATUS_SURFACE_TYPE_MISMATCH));
|
2014-09-25 08:38:50 +05:30
|
|
|
|
}
|
2008-02-25 21:06:21 -05:00
|
|
|
|
|
|
|
|
|
|
return (cairo_surface_t*) surface->imageSurface;
|
|
|
|
|
|
}
|