2006-02-22 04:44:31 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-02-22 04:44:31 +03:00
|
|
|
|
|
|
|
#include "gfxQuartzSurface.h"
|
2008-01-07 03:50:18 +03:00
|
|
|
#include "gfxContext.h"
|
2006-02-22 04:44:31 +03:00
|
|
|
|
2007-04-04 05:09:15 +04:00
|
|
|
#include "cairo-quartz.h"
|
2006-02-22 04:44:31 +03:00
|
|
|
|
2011-09-13 18:49:01 +04:00
|
|
|
void
|
|
|
|
gfxQuartzSurface::MakeInvalid()
|
|
|
|
{
|
|
|
|
mSize = gfxIntSize(-1, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxQuartzSurface::gfxQuartzSurface(const gfxSize& desiredSize, gfxImageFormat format,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aForPrinting)
|
2011-09-13 18:49:01 +04:00
|
|
|
: mCGContext(NULL), mSize(desiredSize), mForPrinting(aForPrinting)
|
2006-02-22 04:44:31 +03:00
|
|
|
{
|
2011-09-13 18:49:01 +04:00
|
|
|
gfxIntSize size((unsigned int) floor(desiredSize.width),
|
|
|
|
(unsigned int) floor(desiredSize.height));
|
|
|
|
if (!CheckSurfaceSize(size))
|
|
|
|
MakeInvalid();
|
2008-02-06 09:48:47 +03:00
|
|
|
|
2011-09-13 18:49:01 +04:00
|
|
|
unsigned int width = static_cast<unsigned int>(mSize.width);
|
|
|
|
unsigned int height = static_cast<unsigned int>(mSize.height);
|
2007-05-10 23:58:09 +04:00
|
|
|
|
2007-04-04 05:09:15 +04:00
|
|
|
cairo_surface_t *surf = cairo_quartz_surface_create
|
2008-02-06 09:48:47 +03:00
|
|
|
((cairo_format_t) format, width, height);
|
2006-08-31 02:01:27 +04:00
|
|
|
|
2007-04-04 05:09:15 +04:00
|
|
|
mCGContext = cairo_quartz_surface_get_cg_context (surf);
|
2006-02-22 04:44:31 +03:00
|
|
|
|
2006-08-31 02:01:27 +04:00
|
|
|
CGContextRetain(mCGContext);
|
2006-02-22 04:44:31 +03:00
|
|
|
|
|
|
|
Init(surf);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxQuartzSurface::gfxQuartzSurface(CGContextRef context,
|
2011-09-13 18:49:01 +04:00
|
|
|
const gfxSize& desiredSize,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aForPrinting)
|
2011-09-13 18:49:01 +04:00
|
|
|
: mCGContext(context), mSize(desiredSize), mForPrinting(aForPrinting)
|
2006-02-22 04:44:31 +03:00
|
|
|
{
|
2011-09-13 18:49:01 +04:00
|
|
|
gfxIntSize size((unsigned int) floor(desiredSize.width),
|
|
|
|
(unsigned int) floor(desiredSize.height));
|
|
|
|
if (!CheckSurfaceSize(size))
|
|
|
|
MakeInvalid();
|
|
|
|
|
|
|
|
unsigned int width = static_cast<unsigned int>(mSize.width);
|
|
|
|
unsigned int height = static_cast<unsigned int>(mSize.height);
|
2011-12-13 18:58:11 +04:00
|
|
|
|
|
|
|
cairo_surface_t *surf =
|
|
|
|
cairo_quartz_surface_create_for_cg_context(context,
|
|
|
|
width, height);
|
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
|
|
|
Init(surf);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxQuartzSurface::gfxQuartzSurface(CGContextRef context,
|
|
|
|
const gfxIntSize& size,
|
|
|
|
bool aForPrinting)
|
|
|
|
: mCGContext(context), mSize(size), mForPrinting(aForPrinting)
|
|
|
|
{
|
|
|
|
if (!CheckSurfaceSize(size))
|
|
|
|
MakeInvalid();
|
|
|
|
|
|
|
|
unsigned int width = static_cast<unsigned int>(mSize.width);
|
|
|
|
unsigned int height = static_cast<unsigned int>(mSize.height);
|
2008-02-06 09:48:47 +03:00
|
|
|
|
2007-02-08 23:47:48 +03:00
|
|
|
cairo_surface_t *surf =
|
2007-04-04 05:09:15 +04:00
|
|
|
cairo_quartz_surface_create_for_cg_context(context,
|
2008-02-06 09:48:47 +03:00
|
|
|
width, height);
|
2006-08-31 02:01:27 +04:00
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
2006-02-22 04:44:31 +03:00
|
|
|
Init(surf);
|
|
|
|
}
|
|
|
|
|
2008-01-07 03:50:18 +03:00
|
|
|
gfxQuartzSurface::gfxQuartzSurface(cairo_surface_t *csurf,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aForPrinting) :
|
2008-01-07 03:50:18 +03:00
|
|
|
mSize(-1.0, -1.0), mForPrinting(aForPrinting)
|
2006-04-05 01:54:22 +04:00
|
|
|
{
|
2007-04-04 05:09:15 +04:00
|
|
|
mCGContext = cairo_quartz_surface_get_cg_context (csurf);
|
2006-08-31 02:01:27 +04:00
|
|
|
CGContextRetain (mCGContext);
|
2006-04-05 01:54:22 +04:00
|
|
|
|
2011-10-17 18:59:28 +04:00
|
|
|
Init(csurf, true);
|
2006-04-05 01:54:22 +04:00
|
|
|
}
|
|
|
|
|
2010-12-17 10:34:54 +03:00
|
|
|
gfxQuartzSurface::gfxQuartzSurface(unsigned char *data,
|
2011-09-13 18:49:01 +04:00
|
|
|
const gfxSize& desiredSize,
|
2010-12-17 10:34:54 +03:00
|
|
|
long stride,
|
|
|
|
gfxImageFormat format,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aForPrinting)
|
2012-07-30 18:20:58 +04:00
|
|
|
: mCGContext(nullptr), mSize(desiredSize), mForPrinting(aForPrinting)
|
2010-12-17 10:34:54 +03:00
|
|
|
{
|
2011-09-13 18:49:01 +04:00
|
|
|
gfxIntSize size((unsigned int) floor(desiredSize.width),
|
|
|
|
(unsigned int) floor(desiredSize.height));
|
|
|
|
if (!CheckSurfaceSize(size))
|
|
|
|
MakeInvalid();
|
2010-12-17 10:34:54 +03:00
|
|
|
|
2011-09-13 18:49:01 +04:00
|
|
|
unsigned int width = static_cast<unsigned int>(mSize.width);
|
|
|
|
unsigned int height = static_cast<unsigned int>(mSize.height);
|
2010-12-17 10:34:54 +03:00
|
|
|
|
|
|
|
cairo_surface_t *surf = cairo_quartz_surface_create_for_data
|
|
|
|
(data, (cairo_format_t) format, width, height, stride);
|
|
|
|
|
|
|
|
mCGContext = cairo_quartz_surface_get_cg_context (surf);
|
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
|
|
|
Init(surf);
|
|
|
|
}
|
|
|
|
|
2010-06-01 03:37:44 +04:00
|
|
|
already_AddRefed<gfxASurface>
|
|
|
|
gfxQuartzSurface::CreateSimilarSurface(gfxContentType aType,
|
|
|
|
const gfxIntSize& aSize)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface =
|
2010-11-12 04:42:22 +03:00
|
|
|
cairo_quartz_surface_create_cg_layer(mSurface, (cairo_content_t)aType,
|
|
|
|
aSize.width, aSize.height);
|
2010-06-01 03:37:44 +04:00
|
|
|
if (cairo_surface_status(surface)) {
|
|
|
|
cairo_surface_destroy(surface);
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-06-01 03:37:44 +04:00
|
|
|
}
|
|
|
|
|
2010-06-18 13:21:15 +04:00
|
|
|
nsRefPtr<gfxASurface> result = Wrap(surface);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
return result.forget();
|
2010-06-01 03:37:44 +04:00
|
|
|
}
|
|
|
|
|
2010-04-06 06:28:54 +04:00
|
|
|
CGContextRef
|
|
|
|
gfxQuartzSurface::GetCGContextWithClip(gfxContext *ctx)
|
|
|
|
{
|
|
|
|
return cairo_quartz_get_cg_context_with_clip(ctx->GetCairo());
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t gfxQuartzSurface::GetDefaultContextFlags() const
|
2008-01-07 03:50:18 +03:00
|
|
|
{
|
|
|
|
if (mForPrinting)
|
2011-01-25 11:46:30 +03:00
|
|
|
return gfxContext::FLAG_DISABLE_SNAPPING |
|
|
|
|
gfxContext::FLAG_DISABLE_COPY_BACKGROUND;
|
2008-01-07 03:50:18 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-11 23:31:23 +03:00
|
|
|
already_AddRefed<gfxImageSurface> gfxQuartzSurface::GetAsImageSurface()
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface = cairo_quartz_surface_get_image(mSurface);
|
|
|
|
if (!surface)
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2010-11-11 23:31:23 +03:00
|
|
|
|
|
|
|
nsRefPtr<gfxASurface> img = Wrap(surface);
|
|
|
|
|
|
|
|
// cairo_quartz_surface_get_image returns a referenced image, and thebes
|
|
|
|
// shares the refcounts of Cairo surfaces. However, Wrap also adds a
|
|
|
|
// reference to the image. We need to remove one of these references
|
|
|
|
// explicitly so we don't leak.
|
2011-09-29 18:56:57 +04:00
|
|
|
gfxImageSurface* imgSurface = static_cast<gfxImageSurface*> (img.forget().get());
|
|
|
|
imgSurface->Release();
|
2010-11-11 23:31:23 +03:00
|
|
|
|
2011-09-29 18:56:57 +04:00
|
|
|
return imgSurface;
|
2010-11-11 23:31:23 +03:00
|
|
|
}
|
|
|
|
|
2006-02-22 04:44:31 +03:00
|
|
|
gfxQuartzSurface::~gfxQuartzSurface()
|
|
|
|
{
|
2006-08-31 02:01:27 +04:00
|
|
|
CGContextRelease(mCGContext);
|
2006-02-22 04:44:31 +03:00
|
|
|
}
|