2008-02-20 03:33:27 -08: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/. */
|
2008-02-20 03:33:27 -08:00
|
|
|
|
|
|
|
#include "nsMathUtils.h"
|
|
|
|
|
|
|
|
#include "gfxQuartzNativeDrawing.h"
|
|
|
|
#include "gfxQuartzSurface.h"
|
2010-04-29 20:19:08 -07:00
|
|
|
#include "cairo-quartz.h"
|
2008-02-20 03:33:27 -08:00
|
|
|
// see cairo-quartz-surface.c for the complete list of these
|
|
|
|
enum {
|
|
|
|
kPrivateCGCompositeSourceOver = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
// private Quartz routine needed here
|
|
|
|
extern "C" {
|
|
|
|
CG_EXTERN void CGContextSetCompositeOperation(CGContextRef, int);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxQuartzNativeDrawing::gfxQuartzNativeDrawing(gfxContext* ctx,
|
2012-10-29 02:22:30 -07:00
|
|
|
const gfxRect& nativeRect,
|
|
|
|
gfxFloat aBackingScale)
|
|
|
|
: mContext(ctx), mNativeRect(nativeRect), mBackingScale(aBackingScale)
|
2008-02-20 03:33:27 -08:00
|
|
|
{
|
2010-08-23 02:30:07 -07:00
|
|
|
mNativeRect.RoundOut();
|
2008-02-20 03:33:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
CGContextRef
|
|
|
|
gfxQuartzNativeDrawing::BeginNativeDrawing()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!mQuartzSurface, "BeginNativeDrawing called when drawing already in progress");
|
|
|
|
|
|
|
|
gfxPoint deviceOffset;
|
|
|
|
nsRefPtr<gfxASurface> surf = mContext->CurrentSurface(&deviceOffset.x, &deviceOffset.y);
|
|
|
|
if (!surf || surf->CairoStatus())
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-02-20 03:33:27 -08:00
|
|
|
|
|
|
|
// if this is a native Quartz surface, we don't have to redirect
|
|
|
|
// rendering to our own CGContextRef; in most cases, we are able to
|
|
|
|
// use the CGContextRef from the surface directly. we can extend
|
|
|
|
// this to support offscreen drawing fairly easily in the future.
|
|
|
|
if (surf->GetType() == gfxASurface::SurfaceTypeQuartz &&
|
|
|
|
(surf->GetContentType() == gfxASurface::CONTENT_COLOR ||
|
|
|
|
(surf->GetContentType() == gfxASurface::CONTENT_COLOR_ALPHA))) {
|
2010-08-23 02:30:07 -07:00
|
|
|
mQuartzSurface = static_cast<gfxQuartzSurface*>(surf.get());
|
|
|
|
mSurfaceContext = mContext;
|
|
|
|
|
|
|
|
// grab the CGContextRef
|
|
|
|
mCGContext = cairo_quartz_get_cg_context_with_clip(mSurfaceContext->GetCairo());
|
|
|
|
if (!mCGContext)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-08-23 02:30:07 -07:00
|
|
|
|
|
|
|
gfxMatrix m = mContext->CurrentMatrix();
|
|
|
|
CGContextTranslateCTM(mCGContext, deviceOffset.x, deviceOffset.y);
|
|
|
|
|
|
|
|
// I -think- that this context will always have an identity
|
|
|
|
// transform (since we don't maintain a transform on it in
|
|
|
|
// cairo-land, and instead push/pop as needed)
|
|
|
|
|
|
|
|
gfxFloat x0 = m.x0;
|
|
|
|
gfxFloat y0 = m.y0;
|
|
|
|
|
|
|
|
// We round x0/y0 if we don't have a scale, because otherwise things get
|
|
|
|
// rendered badly
|
|
|
|
// XXX how should we be rounding x0/y0?
|
|
|
|
if (!m.HasNonTranslationOrFlip()) {
|
|
|
|
x0 = floor(x0 + 0.5);
|
|
|
|
y0 = floor(y0 + 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
CGContextConcatCTM(mCGContext, CGAffineTransformMake(m.xx, m.yx,
|
|
|
|
m.xy, m.yy,
|
|
|
|
x0, y0));
|
|
|
|
|
|
|
|
// bug 382049 - need to explicity set the composite operation to sourceOver
|
|
|
|
CGContextSetCompositeOperation(mCGContext, kPrivateCGCompositeSourceOver);
|
2008-02-20 03:33:27 -08:00
|
|
|
} else {
|
2012-10-29 02:22:30 -07:00
|
|
|
nsIntSize backingSize(NSToIntFloor(mNativeRect.width * mBackingScale),
|
|
|
|
NSToIntFloor(mNativeRect.height * mBackingScale));
|
|
|
|
mQuartzSurface = new gfxQuartzSurface(backingSize,
|
2010-08-23 02:30:07 -07:00
|
|
|
gfxASurface::ImageFormatARGB32);
|
|
|
|
if (mQuartzSurface->CairoStatus())
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-08-23 02:30:07 -07:00
|
|
|
mSurfaceContext = new gfxContext(mQuartzSurface);
|
|
|
|
|
|
|
|
// grab the CGContextRef
|
|
|
|
mCGContext = cairo_quartz_get_cg_context_with_clip(mSurfaceContext->GetCairo());
|
2012-10-29 02:22:30 -07:00
|
|
|
CGContextScaleCTM(mCGContext, mBackingScale, mBackingScale);
|
2010-08-23 02:30:07 -07:00
|
|
|
CGContextTranslateCTM(mCGContext, -mNativeRect.X(), -mNativeRect.Y());
|
2008-02-20 03:33:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return mCGContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gfxQuartzNativeDrawing::EndNativeDrawing()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mQuartzSurface, "EndNativeDrawing called without BeginNativeDrawing");
|
|
|
|
|
2010-08-23 02:30:07 -07:00
|
|
|
cairo_quartz_finish_cg_context_with_clip(mSurfaceContext->GetCairo());
|
2008-02-20 03:33:27 -08:00
|
|
|
mQuartzSurface->MarkDirty();
|
2010-08-23 02:30:07 -07:00
|
|
|
if (mSurfaceContext != mContext) {
|
|
|
|
gfxContextMatrixAutoSaveRestore save(mContext);
|
|
|
|
|
|
|
|
// Copy back to destination
|
|
|
|
mContext->Translate(mNativeRect.TopLeft());
|
2012-10-29 02:22:30 -07:00
|
|
|
mContext->Scale(1.0f / mBackingScale, 1.0f / mBackingScale);
|
|
|
|
mContext->DrawSurface(mQuartzSurface, mQuartzSurface->GetSize());
|
2010-08-23 02:30:07 -07:00
|
|
|
}
|
2008-02-20 03:33:27 -08:00
|
|
|
}
|