2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "gfxQuartzSurface.h"
|
2008-01-06 16:50:18 -08:00
|
|
|
#include "gfxContext.h"
|
2013-10-07 16:15:59 -07:00
|
|
|
#include "gfxImageSurface.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-03 18:09:15 -07:00
|
|
|
#include "cairo-quartz.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-13 07:49:01 -07:00
|
|
|
void
|
|
|
|
gfxQuartzSurface::MakeInvalid()
|
|
|
|
{
|
|
|
|
mSize = gfxIntSize(-1, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxQuartzSurface::gfxQuartzSurface(const gfxSize& desiredSize, gfxImageFormat format,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aForPrinting)
|
2013-07-31 08:44:31 -07:00
|
|
|
: mCGContext(nullptr), mSize(desiredSize), mForPrinting(aForPrinting)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-13 07:49:01 -07:00
|
|
|
gfxIntSize size((unsigned int) floor(desiredSize.width),
|
|
|
|
(unsigned int) floor(desiredSize.height));
|
|
|
|
if (!CheckSurfaceSize(size))
|
|
|
|
MakeInvalid();
|
2008-02-05 22:48:47 -08:00
|
|
|
|
2011-09-13 07:49:01 -07:00
|
|
|
unsigned int width = static_cast<unsigned int>(mSize.width);
|
|
|
|
unsigned int height = static_cast<unsigned int>(mSize.height);
|
2007-05-10 12:58:09 -07:00
|
|
|
|
2007-04-03 18:09:15 -07:00
|
|
|
cairo_surface_t *surf = cairo_quartz_surface_create
|
2008-02-05 22:48:47 -08:00
|
|
|
((cairo_format_t) format, width, height);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-03 18:09:15 -07:00
|
|
|
mCGContext = cairo_quartz_surface_get_cg_context (surf);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
|
|
|
Init(surf);
|
2013-05-09 14:02:49 -07:00
|
|
|
if (mSurfaceValid) {
|
|
|
|
RecordMemoryUsed(mSize.height * 4 + sizeof(gfxQuartzSurface));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
gfxQuartzSurface::gfxQuartzSurface(CGContextRef context,
|
2011-09-13 07:49:01 -07:00
|
|
|
const gfxSize& desiredSize,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aForPrinting)
|
2011-09-13 07:49:01 -07:00
|
|
|
: mCGContext(context), mSize(desiredSize), mForPrinting(aForPrinting)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-13 07:49:01 -07: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 06:58:11 -08:00
|
|
|
|
|
|
|
cairo_surface_t *surf =
|
|
|
|
cairo_quartz_surface_create_for_cg_context(context,
|
|
|
|
width, height);
|
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
|
|
|
Init(surf);
|
2013-05-09 14:02:49 -07:00
|
|
|
if (mSurfaceValid) {
|
|
|
|
RecordMemoryUsed(mSize.height * 4 + sizeof(gfxQuartzSurface));
|
|
|
|
}
|
2011-12-13 06:58:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
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-05 22:48:47 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
cairo_surface_t *surf =
|
2007-04-03 18:09:15 -07:00
|
|
|
cairo_quartz_surface_create_for_cg_context(context,
|
2008-02-05 22:48:47 -08:00
|
|
|
width, height);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
|
|
|
Init(surf);
|
2013-05-09 14:02:49 -07:00
|
|
|
if (mSurfaceValid) {
|
|
|
|
RecordMemoryUsed(mSize.height * 4 + sizeof(gfxQuartzSurface));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-06 16:50:18 -08:00
|
|
|
gfxQuartzSurface::gfxQuartzSurface(cairo_surface_t *csurf,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aForPrinting) :
|
2008-01-06 16:50:18 -08:00
|
|
|
mSize(-1.0, -1.0), mForPrinting(aForPrinting)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-04-03 18:09:15 -07:00
|
|
|
mCGContext = cairo_quartz_surface_get_cg_context (csurf);
|
2007-03-22 10:30:00 -07:00
|
|
|
CGContextRetain (mCGContext);
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
Init(csurf, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-12-16 23:34:54 -08:00
|
|
|
gfxQuartzSurface::gfxQuartzSurface(unsigned char *data,
|
2011-09-13 07:49:01 -07:00
|
|
|
const gfxSize& desiredSize,
|
2010-12-16 23:34:54 -08:00
|
|
|
long stride,
|
|
|
|
gfxImageFormat format,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aForPrinting)
|
2012-07-30 07:20:58 -07:00
|
|
|
: mCGContext(nullptr), mSize(desiredSize), mForPrinting(aForPrinting)
|
2010-12-16 23:34:54 -08:00
|
|
|
{
|
2011-09-13 07:49:01 -07:00
|
|
|
gfxIntSize size((unsigned int) floor(desiredSize.width),
|
|
|
|
(unsigned int) floor(desiredSize.height));
|
|
|
|
if (!CheckSurfaceSize(size))
|
|
|
|
MakeInvalid();
|
2010-12-16 23:34:54 -08:00
|
|
|
|
2011-09-13 07:49:01 -07:00
|
|
|
unsigned int width = static_cast<unsigned int>(mSize.width);
|
|
|
|
unsigned int height = static_cast<unsigned int>(mSize.height);
|
2010-12-16 23:34:54 -08: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);
|
2013-05-09 14:02:49 -07:00
|
|
|
if (mSurfaceValid) {
|
|
|
|
RecordMemoryUsed(mSize.height * stride + sizeof(gfxQuartzSurface));
|
|
|
|
}
|
2010-12-16 23:34:54 -08:00
|
|
|
}
|
|
|
|
|
2013-05-22 00:04:12 -07:00
|
|
|
gfxQuartzSurface::gfxQuartzSurface(unsigned char *data,
|
|
|
|
const gfxIntSize& aSize,
|
|
|
|
long stride,
|
|
|
|
gfxImageFormat format,
|
|
|
|
bool aForPrinting)
|
|
|
|
: mCGContext(nullptr), mSize(aSize.width, aSize.height), mForPrinting(aForPrinting)
|
|
|
|
{
|
|
|
|
if (!CheckSurfaceSize(aSize))
|
|
|
|
MakeInvalid();
|
|
|
|
|
|
|
|
cairo_surface_t *surf = cairo_quartz_surface_create_for_data
|
|
|
|
(data, (cairo_format_t) format, aSize.width, aSize.height, stride);
|
|
|
|
|
|
|
|
mCGContext = cairo_quartz_surface_get_cg_context (surf);
|
|
|
|
|
|
|
|
CGContextRetain(mCGContext);
|
|
|
|
|
|
|
|
Init(surf);
|
|
|
|
if (mSurfaceValid) {
|
|
|
|
RecordMemoryUsed(mSize.height * stride + sizeof(gfxQuartzSurface));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-31 16:37:44 -07:00
|
|
|
already_AddRefed<gfxASurface>
|
|
|
|
gfxQuartzSurface::CreateSimilarSurface(gfxContentType aType,
|
|
|
|
const gfxIntSize& aSize)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface =
|
2010-11-11 17:42:22 -08:00
|
|
|
cairo_quartz_surface_create_cg_layer(mSurface, (cairo_content_t)aType,
|
|
|
|
aSize.width, aSize.height);
|
2010-05-31 16:37:44 -07:00
|
|
|
if (cairo_surface_status(surface)) {
|
|
|
|
cairo_surface_destroy(surface);
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-05-31 16:37:44 -07:00
|
|
|
}
|
|
|
|
|
2010-06-18 02:21:15 -07:00
|
|
|
nsRefPtr<gfxASurface> result = Wrap(surface);
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
return result.forget();
|
2010-05-31 16:37:44 -07:00
|
|
|
}
|
|
|
|
|
2010-04-05 19:28:54 -07:00
|
|
|
CGContextRef
|
|
|
|
gfxQuartzSurface::GetCGContextWithClip(gfxContext *ctx)
|
|
|
|
{
|
|
|
|
return cairo_quartz_get_cg_context_with_clip(ctx->GetCairo());
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t gfxQuartzSurface::GetDefaultContextFlags() const
|
2008-01-06 16:50:18 -08:00
|
|
|
{
|
|
|
|
if (mForPrinting)
|
2011-01-25 00:46:30 -08:00
|
|
|
return gfxContext::FLAG_DISABLE_SNAPPING |
|
|
|
|
gfxContext::FLAG_DISABLE_COPY_BACKGROUND;
|
2008-01-06 16:50:18 -08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-11 12:31:23 -08:00
|
|
|
already_AddRefed<gfxImageSurface> gfxQuartzSurface::GetAsImageSurface()
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface = cairo_quartz_surface_get_image(mSurface);
|
2012-10-24 16:04:41 -07:00
|
|
|
if (!surface || cairo_surface_status(surface))
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-11-11 12:31:23 -08: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.
|
2013-04-28 04:52:10 -07:00
|
|
|
img->Release();
|
2010-11-11 12:31:23 -08:00
|
|
|
|
2013-09-20 02:50:05 -07:00
|
|
|
img->SetOpaqueRect(GetOpaqueRect());
|
|
|
|
|
2013-04-28 04:52:10 -07:00
|
|
|
return img.forget().downcast<gfxImageSurface>();
|
2010-11-11 12:31:23 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
gfxQuartzSurface::~gfxQuartzSurface()
|
|
|
|
{
|
|
|
|
CGContextRelease(mCGContext);
|
|
|
|
}
|