2011-11-02 23:55:03 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
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/. */
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
#include "DrawTargetSkia.h"
|
|
|
|
#include "SourceSurfaceSkia.h"
|
2012-01-09 22:54:44 +04:00
|
|
|
#include "ScaledFontBase.h"
|
2013-06-05 21:48:59 +04:00
|
|
|
#include "ScaledFontCairo.h"
|
2015-07-29 23:31:40 +03:00
|
|
|
#include "skia/include/core/SkBitmapDevice.h"
|
2013-11-27 15:25:28 +04:00
|
|
|
#include "FilterNodeSoftware.h"
|
2015-09-02 21:12:32 +03:00
|
|
|
#include "HelpersSkia.h"
|
2013-03-14 03:29:47 +04:00
|
|
|
|
2015-12-18 21:53:25 +03:00
|
|
|
#include "skia/include/core/SkSurface.h"
|
2015-07-29 23:31:40 +03:00
|
|
|
#include "skia/include/core/SkTypeface.h"
|
|
|
|
#include "skia/include/effects/SkGradientShader.h"
|
|
|
|
#include "skia/include/core/SkColorFilter.h"
|
2015-09-04 22:29:11 +03:00
|
|
|
#include "skia/include/effects/SkBlurImageFilter.h"
|
2015-07-29 23:31:40 +03:00
|
|
|
#include "skia/include/effects/SkLayerRasterizer.h"
|
2011-11-02 23:55:03 +04:00
|
|
|
#include "Logging.h"
|
|
|
|
#include "Tools.h"
|
2013-11-03 20:28:30 +04:00
|
|
|
#include "DataSurfaceHelpers.h"
|
2011-11-02 23:55:03 +04:00
|
|
|
#include <algorithm>
|
|
|
|
|
2016-01-21 17:51:40 +03:00
|
|
|
#ifdef USE_SKIA_GPU
|
|
|
|
#include "GLDefs.h"
|
|
|
|
#include "skia/include/gpu/SkGr.h"
|
|
|
|
#include "skia/include/gpu/GrContext.h"
|
|
|
|
#include "skia/include/gpu/gl/GrGLInterface.h"
|
|
|
|
#endif
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
class GradientStopsSkia : public GradientStops
|
|
|
|
{
|
|
|
|
public:
|
2014-02-24 17:23:37 +04:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(GradientStopsSkia)
|
2012-01-19 08:48:33 +04:00
|
|
|
GradientStopsSkia(const std::vector<GradientStop>& aStops, uint32_t aNumStops, ExtendMode aExtendMode)
|
2011-11-02 23:55:03 +04:00
|
|
|
: mCount(aNumStops)
|
2012-01-19 08:48:33 +04:00
|
|
|
, mExtendMode(aExtendMode)
|
2011-11-02 23:55:03 +04:00
|
|
|
{
|
|
|
|
if (mCount == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skia gradients always require a stop at 0.0 and 1.0, insert these if
|
|
|
|
// we don't have them.
|
|
|
|
uint32_t shift = 0;
|
|
|
|
if (aStops[0].offset != 0) {
|
|
|
|
mCount++;
|
|
|
|
shift = 1;
|
|
|
|
}
|
|
|
|
if (aStops[aNumStops-1].offset != 1) {
|
|
|
|
mCount++;
|
|
|
|
}
|
|
|
|
mColors.resize(mCount);
|
|
|
|
mPositions.resize(mCount);
|
|
|
|
if (aStops[0].offset != 0) {
|
|
|
|
mColors[0] = ColorToSkColor(aStops[0].color, 1.0);
|
|
|
|
mPositions[0] = 0;
|
|
|
|
}
|
|
|
|
for (uint32_t i = 0; i < aNumStops; i++) {
|
|
|
|
mColors[i + shift] = ColorToSkColor(aStops[i].color, 1.0);
|
|
|
|
mPositions[i + shift] = SkFloatToScalar(aStops[i].offset);
|
|
|
|
}
|
|
|
|
if (aStops[aNumStops-1].offset != 1) {
|
|
|
|
mColors[mCount-1] = ColorToSkColor(aStops[aNumStops-1].color, 1.0);
|
|
|
|
mPositions[mCount-1] = SK_Scalar1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-10 23:06:16 +04:00
|
|
|
BackendType GetBackendType() const { return BackendType::SKIA; }
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
std::vector<SkColor> mColors;
|
|
|
|
std::vector<SkScalar> mPositions;
|
|
|
|
int mCount;
|
2012-01-19 08:48:33 +04:00
|
|
|
ExtendMode mExtendMode;
|
2011-11-02 23:55:03 +04:00
|
|
|
};
|
|
|
|
|
2014-01-13 04:29:48 +04:00
|
|
|
/**
|
|
|
|
* When constructing a temporary SkBitmap via GetBitmapForSurface, we may also
|
|
|
|
* have to construct a temporary DataSourceSurface, which must live as long as
|
2016-01-12 21:05:13 +03:00
|
|
|
* the SkBitmap. We attach this temporary surface to the bitmap's pixelref, so
|
|
|
|
* that it can be released once the pixelref is freed.
|
2014-01-13 04:29:48 +04:00
|
|
|
*/
|
2016-01-12 21:05:13 +03:00
|
|
|
static void
|
|
|
|
ReleaseTemporarySurface(void* aPixels, void* aContext)
|
2014-01-13 04:29:48 +04:00
|
|
|
{
|
2016-01-12 21:05:13 +03:00
|
|
|
DataSourceSurface* surf = static_cast<DataSourceSurface*>(aContext);
|
|
|
|
if (surf) {
|
|
|
|
surf->Release();
|
|
|
|
}
|
|
|
|
}
|
2014-01-13 04:29:48 +04:00
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
static SkBitmap
|
2014-01-13 04:29:48 +04:00
|
|
|
GetBitmapForSurface(SourceSurface* aSurface)
|
|
|
|
{
|
2016-01-12 21:05:13 +03:00
|
|
|
SkBitmap bitmap;
|
2014-01-13 04:29:48 +04:00
|
|
|
|
|
|
|
if (aSurface->GetType() == SurfaceType::SKIA) {
|
2016-01-12 21:05:13 +03:00
|
|
|
bitmap = static_cast<SourceSurfaceSkia*>(aSurface)->GetBitmap();
|
|
|
|
return bitmap;
|
2014-01-13 04:29:48 +04:00
|
|
|
}
|
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
DataSourceSurface* surf = aSurface->GetDataSurface().take();
|
2014-01-13 04:29:48 +04:00
|
|
|
if (!surf) {
|
2016-01-12 21:05:13 +03:00
|
|
|
gfxDevCrash(LogReason::SourceSurfaceIncompatible) << "Non-Skia SourceSurfaces need to be DataSourceSurfaces";
|
|
|
|
return bitmap;
|
2013-11-27 15:25:27 +04:00
|
|
|
}
|
2014-01-13 04:29:48 +04:00
|
|
|
|
2016-01-21 17:50:43 +03:00
|
|
|
if (!bitmap.installPixels(MakeSkiaImageInfo(surf->GetSize(), surf->GetFormat()),
|
|
|
|
surf->GetData(), surf->Stride(), nullptr,
|
2016-01-12 21:05:13 +03:00
|
|
|
ReleaseTemporarySurface, surf)) {
|
|
|
|
gfxDebug() << "Failed installing pixels on Skia bitmap for temporary surface";
|
|
|
|
}
|
2014-07-28 04:47:43 +04:00
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
return bitmap;
|
2013-11-27 15:25:27 +04:00
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::DrawTargetSkia()
|
2016-01-21 17:51:40 +03:00
|
|
|
: mSnapshot(nullptr)
|
2011-11-02 23:55:03 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawTargetSkia::~DrawTargetSkia()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<SourceSurface>
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::Snapshot()
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SourceSurfaceSkia> snapshot = mSnapshot;
|
2013-08-02 05:12:16 +04:00
|
|
|
if (!snapshot) {
|
|
|
|
snapshot = new SourceSurfaceSkia();
|
2015-05-26 06:10:25 +03:00
|
|
|
mSnapshot = snapshot;
|
2015-05-26 10:00:19 +03:00
|
|
|
if (!snapshot->InitFromCanvas(mCanvas.get(), mFormat, this))
|
|
|
|
return nullptr;
|
2013-08-02 05:12:16 +04:00
|
|
|
}
|
2013-05-29 20:49:40 +04:00
|
|
|
|
2014-06-13 20:09:23 +04:00
|
|
|
return snapshot.forget();
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2015-05-01 21:08:04 +03:00
|
|
|
bool
|
|
|
|
DrawTargetSkia::LockBits(uint8_t** aData, IntSize* aSize,
|
2016-01-13 21:11:07 +03:00
|
|
|
int32_t* aStride, SurfaceFormat* aFormat,
|
|
|
|
IntPoint* aOrigin)
|
2015-05-01 21:08:04 +03:00
|
|
|
{
|
2016-01-13 21:11:07 +03:00
|
|
|
// Ensure the layer is at the origin if required.
|
|
|
|
SkIPoint origin = mCanvas->getTopDevice()->getOrigin();
|
|
|
|
if (!aOrigin && !origin.isZero()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-12-18 21:53:25 +03:00
|
|
|
/* Test if the canvas' device has accessible pixels first, as actually
|
|
|
|
* accessing the pixels may trigger side-effects, even if it fails.
|
|
|
|
*/
|
|
|
|
if (!mCanvas->peekPixels(nullptr, nullptr)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkImageInfo info;
|
|
|
|
size_t rowBytes;
|
|
|
|
void* pixels = mCanvas->accessTopLayerPixels(&info, &rowBytes);
|
|
|
|
if (!pixels) {
|
2015-05-01 21:08:04 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MarkChanged();
|
|
|
|
|
2015-12-18 21:53:25 +03:00
|
|
|
*aData = reinterpret_cast<uint8_t*>(pixels);
|
|
|
|
*aSize = IntSize(info.width(), info.height());
|
|
|
|
*aStride = int32_t(rowBytes);
|
|
|
|
*aFormat = SkiaColorTypeToGfxFormat(info.colorType());
|
2016-01-13 21:11:07 +03:00
|
|
|
if (aOrigin) {
|
|
|
|
*aOrigin = IntPoint(origin.x(), origin.y());
|
|
|
|
}
|
2015-05-01 21:08:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::ReleaseBits(uint8_t* aData)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-01-13 04:29:48 +04:00
|
|
|
static void
|
2016-01-12 21:05:13 +03:00
|
|
|
SetPaintPattern(SkPaint& aPaint, const Pattern& aPattern, Float aAlpha = 1.0)
|
2012-01-19 08:48:33 +04:00
|
|
|
{
|
|
|
|
switch (aPattern.GetType()) {
|
2014-01-10 23:06:17 +04:00
|
|
|
case PatternType::COLOR: {
|
2012-01-19 08:48:33 +04:00
|
|
|
Color color = static_cast<const ColorPattern&>(aPattern).mColor;
|
|
|
|
aPaint.setColor(ColorToSkColor(color, aAlpha));
|
|
|
|
break;
|
|
|
|
}
|
2014-01-10 23:06:17 +04:00
|
|
|
case PatternType::LINEAR_GRADIENT: {
|
2012-01-19 08:48:33 +04:00
|
|
|
const LinearGradientPattern& pat = static_cast<const LinearGradientPattern&>(aPattern);
|
|
|
|
GradientStopsSkia *stops = static_cast<GradientStopsSkia*>(pat.mStops.get());
|
2015-11-23 19:17:35 +03:00
|
|
|
SkShader::TileMode mode = ExtendModeToTileMode(stops->mExtendMode, Axis::BOTH);
|
2012-01-19 08:48:33 +04:00
|
|
|
|
|
|
|
if (stops->mCount >= 2) {
|
|
|
|
SkPoint points[2];
|
|
|
|
points[0] = SkPoint::Make(SkFloatToScalar(pat.mBegin.x), SkFloatToScalar(pat.mBegin.y));
|
|
|
|
points[1] = SkPoint::Make(SkFloatToScalar(pat.mEnd.x), SkFloatToScalar(pat.mEnd.y));
|
|
|
|
|
2016-01-12 21:26:31 +03:00
|
|
|
SkMatrix mat;
|
|
|
|
GfxMatrixToSkiaMatrix(pat.mMatrix, mat);
|
2014-10-08 08:16:14 +04:00
|
|
|
SkShader* shader = SkGradientShader::CreateLinear(points,
|
|
|
|
&stops->mColors.front(),
|
|
|
|
&stops->mPositions.front(),
|
|
|
|
stops->mCount,
|
2016-01-12 21:26:31 +03:00
|
|
|
mode, 0, &mat);
|
|
|
|
SkSafeUnref(aPaint.setShader(shader));
|
2012-01-19 08:48:33 +04:00
|
|
|
} else {
|
2016-01-13 21:11:07 +03:00
|
|
|
aPaint.setColor(SK_ColorTRANSPARENT);
|
2012-01-19 08:48:33 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-01-10 23:06:17 +04:00
|
|
|
case PatternType::RADIAL_GRADIENT: {
|
2012-01-19 08:48:33 +04:00
|
|
|
const RadialGradientPattern& pat = static_cast<const RadialGradientPattern&>(aPattern);
|
|
|
|
GradientStopsSkia *stops = static_cast<GradientStopsSkia*>(pat.mStops.get());
|
2015-11-23 19:17:35 +03:00
|
|
|
SkShader::TileMode mode = ExtendModeToTileMode(stops->mExtendMode, Axis::BOTH);
|
2012-01-19 08:48:33 +04:00
|
|
|
|
|
|
|
if (stops->mCount >= 2) {
|
|
|
|
SkPoint points[2];
|
|
|
|
points[0] = SkPoint::Make(SkFloatToScalar(pat.mCenter1.x), SkFloatToScalar(pat.mCenter1.y));
|
|
|
|
points[1] = SkPoint::Make(SkFloatToScalar(pat.mCenter2.x), SkFloatToScalar(pat.mCenter2.y));
|
|
|
|
|
2016-01-12 21:26:31 +03:00
|
|
|
SkMatrix mat;
|
|
|
|
GfxMatrixToSkiaMatrix(pat.mMatrix, mat);
|
2014-10-08 08:16:14 +04:00
|
|
|
SkShader* shader = SkGradientShader::CreateTwoPointConical(points[0],
|
2012-09-12 20:37:34 +04:00
|
|
|
SkFloatToScalar(pat.mRadius1),
|
2014-10-08 08:16:14 +04:00
|
|
|
points[1],
|
2012-09-12 20:37:34 +04:00
|
|
|
SkFloatToScalar(pat.mRadius2),
|
2014-10-08 08:16:14 +04:00
|
|
|
&stops->mColors.front(),
|
|
|
|
&stops->mPositions.front(),
|
|
|
|
stops->mCount,
|
2016-01-12 21:26:31 +03:00
|
|
|
mode, 0, &mat);
|
|
|
|
SkSafeUnref(aPaint.setShader(shader));
|
2012-01-19 08:48:33 +04:00
|
|
|
} else {
|
2016-01-13 21:11:07 +03:00
|
|
|
aPaint.setColor(SK_ColorTRANSPARENT);
|
2012-01-19 08:48:33 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-01-10 23:06:17 +04:00
|
|
|
case PatternType::SURFACE: {
|
2012-01-19 08:48:33 +04:00
|
|
|
const SurfacePattern& pat = static_cast<const SurfacePattern&>(aPattern);
|
2016-01-12 21:05:13 +03:00
|
|
|
SkBitmap bitmap = GetBitmapForSurface(pat.mSurface);
|
2012-01-19 08:48:33 +04:00
|
|
|
|
|
|
|
SkMatrix mat;
|
|
|
|
GfxMatrixToSkiaMatrix(pat.mMatrix, mat);
|
2014-09-12 09:18:22 +04:00
|
|
|
|
|
|
|
if (!pat.mSamplingRect.IsEmpty()) {
|
|
|
|
SkIRect rect = IntRectToSkIRect(pat.mSamplingRect);
|
|
|
|
bitmap.extractSubset(&bitmap, rect);
|
|
|
|
mat.preTranslate(rect.x(), rect.y());
|
|
|
|
}
|
|
|
|
|
2015-11-23 19:17:35 +03:00
|
|
|
SkShader::TileMode xTileMode = ExtendModeToTileMode(pat.mExtendMode, Axis::X_AXIS);
|
|
|
|
SkShader::TileMode yTileMode = ExtendModeToTileMode(pat.mExtendMode, Axis::Y_AXIS);
|
|
|
|
|
2016-01-12 21:26:31 +03:00
|
|
|
SkShader* shader = SkShader::CreateBitmapShader(bitmap, xTileMode, yTileMode, &mat);
|
|
|
|
SkSafeUnref(aPaint.setShader(shader));
|
2014-01-10 23:06:17 +04:00
|
|
|
if (pat.mFilter == Filter::POINT) {
|
2015-12-18 21:53:25 +03:00
|
|
|
aPaint.setFilterQuality(kNone_SkFilterQuality);
|
2012-01-19 08:48:33 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-01 12:59:20 +04:00
|
|
|
static inline Rect
|
|
|
|
GetClipBounds(SkCanvas *aCanvas)
|
|
|
|
{
|
|
|
|
SkRect clipBounds;
|
|
|
|
aCanvas->getClipBounds(&clipBounds);
|
|
|
|
return SkRectToRect(clipBounds);
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
struct AutoPaintSetup {
|
2014-04-01 12:59:20 +04:00
|
|
|
AutoPaintSetup(SkCanvas *aCanvas, const DrawOptions& aOptions, const Pattern& aPattern, const Rect* aMaskBounds = nullptr)
|
2011-11-02 23:55:03 +04:00
|
|
|
: mNeedsRestore(false), mAlpha(1.0)
|
|
|
|
{
|
2014-04-01 12:59:20 +04:00
|
|
|
Init(aCanvas, aOptions, aMaskBounds);
|
2016-01-12 21:05:13 +03:00
|
|
|
SetPaintPattern(mPaint, aPattern, mAlpha);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2014-04-01 12:59:20 +04:00
|
|
|
AutoPaintSetup(SkCanvas *aCanvas, const DrawOptions& aOptions, const Rect* aMaskBounds = nullptr)
|
2011-11-02 23:55:03 +04:00
|
|
|
: mNeedsRestore(false), mAlpha(1.0)
|
|
|
|
{
|
2014-04-01 12:59:20 +04:00
|
|
|
Init(aCanvas, aOptions, aMaskBounds);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
~AutoPaintSetup()
|
|
|
|
{
|
|
|
|
if (mNeedsRestore) {
|
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-01 12:59:20 +04:00
|
|
|
void Init(SkCanvas *aCanvas, const DrawOptions& aOptions, const Rect* aMaskBounds)
|
2011-11-02 23:55:03 +04:00
|
|
|
{
|
|
|
|
mPaint.setXfermodeMode(GfxOpToSkiaOp(aOptions.mCompositionOp));
|
|
|
|
mCanvas = aCanvas;
|
|
|
|
|
|
|
|
//TODO: Can we set greyscale somehow?
|
2014-01-10 23:06:17 +04:00
|
|
|
if (aOptions.mAntialiasMode != AntialiasMode::NONE) {
|
2011-11-02 23:55:03 +04:00
|
|
|
mPaint.setAntiAlias(true);
|
|
|
|
} else {
|
|
|
|
mPaint.setAntiAlias(false);
|
|
|
|
}
|
|
|
|
|
2014-04-01 12:59:20 +04:00
|
|
|
Rect clipBounds = GetClipBounds(aCanvas);
|
|
|
|
bool needsGroup = !IsOperatorBoundByMask(aOptions.mCompositionOp) &&
|
|
|
|
(!aMaskBounds || !aMaskBounds->Contains(clipBounds));
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
// TODO: We could skip the temporary for operator_source and just
|
|
|
|
// clear the clip rect. The other operators would be harder
|
|
|
|
// but could be worth it to skip pushing a group.
|
2014-04-01 12:59:20 +04:00
|
|
|
if (needsGroup) {
|
2011-11-02 23:55:03 +04:00
|
|
|
mPaint.setXfermodeMode(SkXfermode::kSrcOver_Mode);
|
|
|
|
SkPaint temp;
|
|
|
|
temp.setXfermodeMode(GfxOpToSkiaOp(aOptions.mCompositionOp));
|
2014-06-18 18:16:30 +04:00
|
|
|
temp.setAlpha(ColorFloatToByte(aOptions.mAlpha));
|
2011-11-02 23:55:03 +04:00
|
|
|
//TODO: Get a rect here
|
2012-08-14 22:06:12 +04:00
|
|
|
mCanvas->saveLayer(nullptr, &temp);
|
2011-11-02 23:55:03 +04:00
|
|
|
mNeedsRestore = true;
|
|
|
|
} else {
|
2014-06-18 18:16:30 +04:00
|
|
|
mPaint.setAlpha(ColorFloatToByte(aOptions.mAlpha));
|
2011-11-02 23:55:03 +04:00
|
|
|
mAlpha = aOptions.mAlpha;
|
|
|
|
}
|
2015-12-18 21:53:25 +03:00
|
|
|
mPaint.setFilterQuality(kLow_SkFilterQuality);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Maybe add an operator overload to access this easier?
|
|
|
|
SkPaint mPaint;
|
|
|
|
bool mNeedsRestore;
|
|
|
|
SkCanvas* mCanvas;
|
|
|
|
Float mAlpha;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::Flush()
|
|
|
|
{
|
2012-12-01 03:57:38 +04:00
|
|
|
mCanvas->flush();
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::DrawSurface(SourceSurface *aSurface,
|
|
|
|
const Rect &aDest,
|
|
|
|
const Rect &aSource,
|
|
|
|
const DrawSurfaceOptions &aSurfOptions,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SourceSurface> dataSurface;
|
2014-04-15 16:55:48 +04:00
|
|
|
|
2014-01-10 22:55:24 +04:00
|
|
|
if (!(aSurface->GetType() == SurfaceType::SKIA || aSurface->GetType() == SurfaceType::DATA)) {
|
2014-04-15 16:55:48 +04:00
|
|
|
dataSurface = aSurface->GetDataSurface();
|
|
|
|
if (!dataSurface) {
|
|
|
|
gfxDebug() << *this << ": DrawSurface() can't draw surface";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
aSurface = dataSurface.get();
|
2013-12-03 17:52:06 +04:00
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
if (aSource.IsEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
SkRect destRect = RectToSkRect(aDest);
|
|
|
|
SkRect sourceRect = RectToSkRect(aSource);
|
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
SkBitmap bitmap = GetBitmapForSurface(aSurface);
|
2014-10-08 08:16:14 +04:00
|
|
|
|
2014-04-01 12:59:20 +04:00
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, &aDest);
|
2014-01-10 23:06:17 +04:00
|
|
|
if (aSurfOptions.mFilter == Filter::POINT) {
|
2015-12-18 21:53:25 +03:00
|
|
|
paint.mPaint.setFilterQuality(kNone_SkFilterQuality);
|
2011-11-18 08:00:38 +04:00
|
|
|
}
|
2012-11-16 04:57:40 +04:00
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
mCanvas->drawBitmapRect(bitmap, sourceRect, destRect, &paint.mPaint);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2014-06-27 13:17:49 +04:00
|
|
|
DrawTargetType
|
|
|
|
DrawTargetSkia::GetType() const
|
|
|
|
{
|
|
|
|
#ifdef USE_SKIA_GPU
|
|
|
|
if (mGrContext) {
|
|
|
|
return DrawTargetType::HARDWARE_RASTER;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return DrawTargetType::SOFTWARE_RASTER;
|
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:28 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::DrawFilter(FilterNode *aNode,
|
|
|
|
const Rect &aSourceRect,
|
|
|
|
const Point &aDestPoint,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
|
|
|
FilterNodeSoftware* filter = static_cast<FilterNodeSoftware*>(aNode);
|
|
|
|
filter->Draw(this, aSourceRect, aDestPoint, aOptions);
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::DrawSurfaceWithShadow(SourceSurface *aSurface,
|
|
|
|
const Point &aDest,
|
|
|
|
const Color &aColor,
|
|
|
|
const Point &aOffset,
|
|
|
|
Float aSigma,
|
|
|
|
CompositionOp aOperator)
|
|
|
|
{
|
2014-03-07 01:33:39 +04:00
|
|
|
if (!(aSurface->GetType() == SurfaceType::SKIA || aSurface->GetType() == SurfaceType::DATA)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2014-03-07 01:33:39 +04:00
|
|
|
|
2014-07-28 04:51:09 +04:00
|
|
|
mCanvas->save();
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->resetMatrix();
|
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
SkBitmap bitmap = GetBitmapForSurface(aSurface);
|
2014-03-07 01:33:39 +04:00
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setXfermodeMode(GfxOpToSkiaOp(aOperator));
|
|
|
|
|
2015-09-04 22:29:11 +03:00
|
|
|
// bug 1201272
|
|
|
|
// We can't use the SkDropShadowImageFilter here because it applies the xfer
|
|
|
|
// mode first to render the bitmap to a temporary layer, and then implicitly
|
|
|
|
// uses src-over to composite the resulting shadow.
|
|
|
|
// The canvas spec, however, states that the composite op must be used to
|
|
|
|
// composite the resulting shadow, so we must instead use a SkBlurImageFilter
|
|
|
|
// to blur the image ourselves.
|
|
|
|
|
|
|
|
SkPaint shadowPaint;
|
|
|
|
SkAutoTUnref<SkImageFilter> blurFilter(SkBlurImageFilter::Create(aSigma, aSigma));
|
|
|
|
SkAutoTUnref<SkColorFilter> colorFilter(
|
|
|
|
SkColorFilter::CreateModeFilter(ColorToSkColor(aColor, 1.0), SkXfermode::kSrcIn_Mode));
|
|
|
|
|
|
|
|
shadowPaint.setXfermode(paint.getXfermode());
|
|
|
|
shadowPaint.setImageFilter(blurFilter.get());
|
|
|
|
shadowPaint.setColorFilter(colorFilter.get());
|
|
|
|
|
|
|
|
IntPoint shadowDest = RoundedToInt(aDest + aOffset);
|
2016-02-09 21:36:19 +03:00
|
|
|
mCanvas->drawBitmap(bitmap, shadowDest.x, shadowDest.y, &shadowPaint);
|
2015-09-04 22:29:11 +03:00
|
|
|
|
|
|
|
// Composite the original image after the shadow
|
|
|
|
IntPoint dest = RoundedToInt(aDest);
|
2016-02-09 21:36:19 +03:00
|
|
|
mCanvas->drawBitmap(bitmap, dest.x, dest.y, &paint);
|
2015-09-04 22:29:11 +03:00
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::FillRect(const Rect &aRect,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2011-11-02 23:55:03 +04:00
|
|
|
SkRect rect = RectToSkRect(aRect);
|
2014-04-01 12:59:20 +04:00
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aPattern, &aRect);
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
mCanvas->drawRect(rect, paint.mPaint);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::Stroke(const Path *aPath,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2012-04-26 02:04:35 +04:00
|
|
|
MOZ_ASSERT(aPath, "Null path");
|
2014-01-10 23:06:16 +04:00
|
|
|
if (aPath->GetBackendType() != BackendType::SKIA) {
|
2011-11-02 23:55:03 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PathSkia *skiaPath = static_cast<const PathSkia*>(aPath);
|
|
|
|
|
|
|
|
|
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aPattern);
|
2011-11-18 08:00:38 +04:00
|
|
|
if (!StrokeOptionsToPaint(paint.mPaint, aStrokeOptions)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-02 23:55:03 +04:00
|
|
|
|
2015-12-30 21:39:13 +03:00
|
|
|
if (!skiaPath->GetPath().isFinite()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->drawPath(skiaPath->GetPath(), paint.mPaint);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::StrokeRect(const Rect &aRect,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2011-11-02 23:55:03 +04:00
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aPattern);
|
2011-11-18 08:00:38 +04:00
|
|
|
if (!StrokeOptionsToPaint(paint.mPaint, aStrokeOptions)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
mCanvas->drawRect(RectToSkRect(aRect), paint.mPaint);
|
|
|
|
}
|
|
|
|
|
2014-10-08 08:16:14 +04:00
|
|
|
void
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::StrokeLine(const Point &aStart,
|
|
|
|
const Point &aEnd,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2011-11-02 23:55:03 +04:00
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aPattern);
|
2011-11-18 08:00:38 +04:00
|
|
|
if (!StrokeOptionsToPaint(paint.mPaint, aStrokeOptions)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-02 23:55:03 +04:00
|
|
|
|
2014-10-08 08:16:14 +04:00
|
|
|
mCanvas->drawLine(SkFloatToScalar(aStart.x), SkFloatToScalar(aStart.y),
|
|
|
|
SkFloatToScalar(aEnd.x), SkFloatToScalar(aEnd.y),
|
2011-11-02 23:55:03 +04:00
|
|
|
paint.mPaint);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::Fill(const Path *aPath,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2014-01-10 23:06:16 +04:00
|
|
|
if (aPath->GetBackendType() != BackendType::SKIA) {
|
2011-11-02 23:55:03 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PathSkia *skiaPath = static_cast<const PathSkia*>(aPath);
|
|
|
|
|
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aPattern);
|
|
|
|
|
2015-12-30 21:39:13 +03:00
|
|
|
if (!skiaPath->GetPath().isFinite()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->drawPath(skiaPath->GetPath(), paint.mPaint);
|
|
|
|
}
|
|
|
|
|
2015-05-04 20:23:54 +03:00
|
|
|
bool
|
|
|
|
DrawTargetSkia::ShouldLCDRenderText(FontType aFontType, AntialiasMode aAntialiasMode)
|
|
|
|
{
|
|
|
|
// For non-opaque surfaces, only allow subpixel AA if explicitly permitted.
|
|
|
|
if (!IsOpaque(mFormat) && !mPermitSubpixelAA) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aAntialiasMode == AntialiasMode::DEFAULT) {
|
|
|
|
switch (aFontType) {
|
|
|
|
case FontType::MAC:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
// TODO: Figure out what to do for the other platforms.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (aAntialiasMode == AntialiasMode::SUBPIXEL);
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::FillGlyphs(ScaledFont *aFont,
|
|
|
|
const GlyphBuffer &aBuffer,
|
|
|
|
const Pattern &aPattern,
|
2012-03-19 23:20:17 +04:00
|
|
|
const DrawOptions &aOptions,
|
2013-06-05 21:48:59 +04:00
|
|
|
const GlyphRenderingOptions *aRenderingOptions)
|
2011-11-02 23:55:03 +04:00
|
|
|
{
|
2014-01-10 23:06:16 +04:00
|
|
|
if (aFont->GetType() != FontType::MAC &&
|
|
|
|
aFont->GetType() != FontType::SKIA &&
|
2016-01-06 22:35:04 +03:00
|
|
|
aFont->GetType() != FontType::GDI &&
|
|
|
|
aFont->GetType() != FontType::DWRITE) {
|
2011-11-02 23:55:03 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
|
|
|
|
2012-01-09 22:54:44 +04:00
|
|
|
ScaledFontBase* skiaFont = static_cast<ScaledFontBase*>(aFont);
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aPattern);
|
2012-01-09 22:54:44 +04:00
|
|
|
paint.mPaint.setTypeface(skiaFont->GetSkTypeface());
|
2011-11-02 23:55:03 +04:00
|
|
|
paint.mPaint.setTextSize(SkFloatToScalar(skiaFont->mSize));
|
|
|
|
paint.mPaint.setTextEncoding(SkPaint::kGlyphID_TextEncoding);
|
2013-06-05 21:48:59 +04:00
|
|
|
|
2015-05-04 20:23:54 +03:00
|
|
|
bool shouldLCDRenderText = ShouldLCDRenderText(aFont->GetType(), aOptions.mAntialiasMode);
|
|
|
|
paint.mPaint.setLCDRenderText(shouldLCDRenderText);
|
2015-12-16 23:43:49 +03:00
|
|
|
paint.mPaint.setSubpixelText(true);
|
2015-05-04 20:23:54 +03:00
|
|
|
|
2014-01-10 23:06:16 +04:00
|
|
|
if (aRenderingOptions && aRenderingOptions->GetType() == FontType::CAIRO) {
|
2015-09-02 21:12:32 +03:00
|
|
|
const GlyphRenderingOptionsCairo* cairoOptions =
|
|
|
|
static_cast<const GlyphRenderingOptionsCairo*>(aRenderingOptions);
|
|
|
|
|
|
|
|
paint.mPaint.setHinting(GfxHintingToSkiaHinting(cairoOptions->GetHinting()));
|
2013-06-05 21:48:59 +04:00
|
|
|
|
2015-09-02 21:12:32 +03:00
|
|
|
if (cairoOptions->GetAutoHinting()) {
|
2013-06-05 21:48:59 +04:00
|
|
|
paint.mPaint.setAutohinted(true);
|
|
|
|
}
|
2015-09-02 21:12:32 +03:00
|
|
|
|
|
|
|
if (cairoOptions->GetAntialiasMode() == AntialiasMode::NONE) {
|
|
|
|
paint.mPaint.setAntiAlias(false);
|
|
|
|
}
|
2015-05-04 20:23:54 +03:00
|
|
|
} else if (aFont->GetType() == FontType::MAC && shouldLCDRenderText) {
|
|
|
|
// SkFontHost_mac only supports subpixel antialiasing when hinting is turned off.
|
|
|
|
paint.mPaint.setHinting(SkPaint::kNo_Hinting);
|
2013-06-05 21:48:59 +04:00
|
|
|
} else {
|
|
|
|
paint.mPaint.setHinting(SkPaint::kNormal_Hinting);
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
std::vector<uint16_t> indices;
|
|
|
|
std::vector<SkPoint> offsets;
|
|
|
|
indices.resize(aBuffer.mNumGlyphs);
|
|
|
|
offsets.resize(aBuffer.mNumGlyphs);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < aBuffer.mNumGlyphs; i++) {
|
|
|
|
indices[i] = aBuffer.mGlyphs[i].mIndex;
|
|
|
|
offsets[i].fX = SkFloatToScalar(aBuffer.mGlyphs[i].mPosition.x);
|
|
|
|
offsets[i].fY = SkFloatToScalar(aBuffer.mGlyphs[i].mPosition.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
mCanvas->drawPosText(&indices.front(), aBuffer.mNumGlyphs*2, &offsets.front(), paint.mPaint);
|
|
|
|
}
|
|
|
|
|
2012-01-19 08:48:33 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::Mask(const Pattern &aSource,
|
|
|
|
const Pattern &aMask,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
|
|
|
MarkChanged();
|
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aSource);
|
|
|
|
|
|
|
|
SkPaint maskPaint;
|
2016-01-12 21:05:13 +03:00
|
|
|
SetPaintPattern(maskPaint, aMask);
|
2014-10-08 08:16:14 +04:00
|
|
|
|
2014-06-20 22:47:27 +04:00
|
|
|
SkLayerRasterizer::Builder builder;
|
|
|
|
builder.addLayer(maskPaint);
|
|
|
|
SkAutoTUnref<SkRasterizer> raster(builder.detachRasterizer());
|
|
|
|
paint.mPaint.setRasterizer(raster.get());
|
2012-01-19 08:48:33 +04:00
|
|
|
|
2016-01-12 21:26:31 +03:00
|
|
|
mCanvas->drawPaint(paint.mPaint);
|
2012-01-19 08:48:33 +04:00
|
|
|
}
|
|
|
|
|
2013-11-25 18:20:56 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::MaskSurface(const Pattern &aSource,
|
|
|
|
SourceSurface *aMask,
|
|
|
|
Point aOffset,
|
|
|
|
const DrawOptions &aOptions)
|
|
|
|
{
|
|
|
|
MarkChanged();
|
|
|
|
AutoPaintSetup paint(mCanvas.get(), aOptions, aSource);
|
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
SkBitmap bitmap = GetBitmapForSurface(aMask);
|
2016-01-12 21:26:31 +03:00
|
|
|
if (bitmap.colorType() != kAlpha_8_SkColorType &&
|
|
|
|
!bitmap.extractAlpha(&bitmap)) {
|
|
|
|
gfxDebug() << *this << ": MaskSurface() failed to extract alpha for mask";
|
|
|
|
return;
|
|
|
|
}
|
2015-11-19 18:25:15 +03:00
|
|
|
|
2016-01-12 21:26:31 +03:00
|
|
|
if (aOffset != Point(0, 0)) {
|
|
|
|
SkMatrix transform;
|
2016-02-09 21:36:19 +03:00
|
|
|
transform.setTranslate(PointToSkPoint(-aOffset));
|
|
|
|
SkShader* matrixShader = paint.mPaint.getShader()->newWithLocalMatrix(transform);
|
2016-01-12 21:26:31 +03:00
|
|
|
SkSafeUnref(paint.mPaint.setShader(matrixShader));
|
2014-05-17 05:31:43 +04:00
|
|
|
}
|
2016-01-12 21:26:31 +03:00
|
|
|
|
|
|
|
mCanvas->drawBitmap(bitmap, aOffset.x, aOffset.y, &paint.mPaint);
|
2013-11-25 18:20:56 +04:00
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<SourceSurface>
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::CreateSourceSurfaceFromData(unsigned char *aData,
|
2013-11-01 17:13:36 +04:00
|
|
|
const IntSize &aSize,
|
|
|
|
int32_t aStride,
|
|
|
|
SurfaceFormat aFormat) const
|
2011-11-02 23:55:03 +04:00
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SourceSurfaceSkia> newSurf = new SourceSurfaceSkia();
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
if (!newSurf->InitFromData(aData, aSize, aStride, aFormat)) {
|
|
|
|
gfxDebug() << *this << ": Failure to create source surface from data. Size: " << aSize;
|
2012-08-14 22:06:12 +04:00
|
|
|
return nullptr;
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
2014-10-08 08:16:14 +04:00
|
|
|
|
2014-06-13 20:09:23 +04:00
|
|
|
return newSurf.forget();
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<DrawTarget>
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::CreateSimilarDrawTarget(const IntSize &aSize, SurfaceFormat aFormat) const
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DrawTargetSkia> target = new DrawTargetSkia();
|
2016-01-21 17:51:40 +03:00
|
|
|
#ifdef USE_SKIA_GPU
|
|
|
|
if (UsingSkiaGPU()) {
|
|
|
|
// Try to create a GPU draw target first if we're currently using the GPU.
|
2016-02-03 21:49:36 +03:00
|
|
|
// Mark the DT as cached so that shadow DTs, extracted subrects, and similar can be reused.
|
|
|
|
if (target->InitWithGrContext(mGrContext.get(), aSize, aFormat, true)) {
|
2016-01-21 17:51:40 +03:00
|
|
|
return target.forget();
|
|
|
|
}
|
|
|
|
// Otherwise, just fall back to a software draw target.
|
|
|
|
}
|
|
|
|
#endif
|
2011-11-02 23:55:03 +04:00
|
|
|
if (!target->Init(aSize, aFormat)) {
|
2012-08-14 22:06:12 +04:00
|
|
|
return nullptr;
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
2014-06-13 20:09:23 +04:00
|
|
|
return target.forget();
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2014-05-23 09:09:34 +04:00
|
|
|
bool
|
|
|
|
DrawTargetSkia::UsingSkiaGPU() const
|
|
|
|
{
|
|
|
|
#ifdef USE_SKIA_GPU
|
2016-01-21 17:51:40 +03:00
|
|
|
return !!mGrContext;
|
2014-05-23 09:09:34 +04:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<SourceSurface>
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::OptimizeSourceSurface(SourceSurface *aSurface) const
|
|
|
|
{
|
2016-01-21 17:52:08 +03:00
|
|
|
#ifdef USE_SKIA_GPU
|
|
|
|
if (UsingSkiaGPU()) {
|
|
|
|
// Check if the underlying SkBitmap already has an associated GrTexture.
|
|
|
|
if (aSurface->GetType() == SurfaceType::SKIA &&
|
|
|
|
static_cast<SourceSurfaceSkia*>(aSurface)->GetBitmap().getTexture()) {
|
|
|
|
RefPtr<SourceSurface> surface(aSurface);
|
|
|
|
return surface.forget();
|
|
|
|
}
|
2013-11-01 17:13:36 +04:00
|
|
|
|
2016-02-03 21:49:36 +03:00
|
|
|
SkBitmap bitmap = GetBitmapForSurface(aSurface);
|
|
|
|
|
2016-01-21 17:52:08 +03:00
|
|
|
// Upload the SkBitmap to a GrTexture otherwise.
|
|
|
|
SkAutoTUnref<GrTexture> texture(
|
2016-02-03 21:49:36 +03:00
|
|
|
GrRefCachedBitmapTexture(mGrContext.get(), bitmap, GrTextureParams::ClampBilerp()));
|
2016-01-21 17:52:08 +03:00
|
|
|
|
2016-02-03 21:49:36 +03:00
|
|
|
if (texture) {
|
|
|
|
// Create a new SourceSurfaceSkia whose SkBitmap contains the GrTexture.
|
|
|
|
RefPtr<SourceSurfaceSkia> surface = new SourceSurfaceSkia();
|
|
|
|
if (surface->InitFromGrTexture(texture, aSurface->GetSize(), aSurface->GetFormat())) {
|
|
|
|
return surface.forget();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The data was too big to fit in a GrTexture.
|
|
|
|
if (aSurface->GetType() == SurfaceType::SKIA) {
|
|
|
|
// It is already a Skia source surface, so just reuse it as-is.
|
|
|
|
RefPtr<SourceSurface> surface(aSurface);
|
2016-01-21 17:52:08 +03:00
|
|
|
return surface.forget();
|
|
|
|
}
|
2016-02-03 21:49:36 +03:00
|
|
|
|
|
|
|
// Wrap it in a Skia source surface so that can do tiled uploads on-demand.
|
|
|
|
RefPtr<SourceSurfaceSkia> surface = new SourceSurfaceSkia();
|
|
|
|
surface->InitFromBitmap(bitmap);
|
|
|
|
return surface.forget();
|
2014-05-23 09:09:34 +04:00
|
|
|
}
|
2016-01-21 17:52:08 +03:00
|
|
|
#endif
|
2014-05-23 09:09:34 +04:00
|
|
|
|
2016-01-21 17:52:08 +03:00
|
|
|
if (aSurface->GetType() == SurfaceType::SKIA) {
|
|
|
|
RefPtr<SourceSurface> surface(aSurface);
|
|
|
|
return surface.forget();
|
2014-05-23 09:09:34 +04:00
|
|
|
}
|
|
|
|
|
2016-01-21 17:52:08 +03:00
|
|
|
// If we're not using skia-gl then drawing doesn't require any
|
|
|
|
// uploading, so any data surface is fine. Call GetDataSurface
|
|
|
|
// to trigger any required readback so that it only happens
|
|
|
|
// once.
|
|
|
|
return aSurface->GetDataSurface();
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<SourceSurface>
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::CreateSourceSurfaceFromNativeSurface(const NativeSurface &aSurface) const
|
|
|
|
{
|
2014-11-11 23:14:00 +03:00
|
|
|
#if USE_SKIA_GPU
|
2016-01-20 21:31:44 +03:00
|
|
|
if (aSurface.mType == NativeSurfaceType::OPENGL_TEXTURE && UsingSkiaGPU()) {
|
2016-01-21 17:51:40 +03:00
|
|
|
// Wrap the OpenGL texture id in a Skia texture handle.
|
|
|
|
GrBackendTextureDesc texDesc;
|
|
|
|
texDesc.fWidth = aSurface.mSize.width;
|
|
|
|
texDesc.fHeight = aSurface.mSize.height;
|
|
|
|
texDesc.fOrigin = kTopLeft_GrSurfaceOrigin;
|
|
|
|
texDesc.fConfig = GfxFormatToGrConfig(aSurface.mFormat);
|
|
|
|
|
|
|
|
GrGLTextureInfo texInfo;
|
|
|
|
texInfo.fTarget = LOCAL_GL_TEXTURE_2D;
|
|
|
|
texInfo.fID = (GrGLuint)(uintptr_t)aSurface.mSurface;
|
|
|
|
texDesc.fTextureHandle = reinterpret_cast<GrBackendObject>(&texInfo);
|
|
|
|
|
|
|
|
SkAutoTUnref<GrTexture> texture(mGrContext->textureProvider()->wrapBackendTexture(texDesc));
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SourceSurfaceSkia> newSurf = new SourceSurfaceSkia();
|
2016-01-21 17:51:40 +03:00
|
|
|
if (newSurf->InitFromGrTexture(texture, aSurface.mSize, aSurface.mFormat)) {
|
2015-04-30 22:20:30 +03:00
|
|
|
return newSurf.forget();
|
2014-11-11 23:14:00 +03:00
|
|
|
}
|
|
|
|
return nullptr;
|
2014-07-04 01:06:48 +04:00
|
|
|
}
|
2016-01-20 21:31:44 +03:00
|
|
|
#endif
|
2014-07-04 01:06:48 +04:00
|
|
|
|
2012-08-14 22:06:12 +04:00
|
|
|
return nullptr;
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::CopySurface(SourceSurface *aSurface,
|
|
|
|
const IntRect& aSourceRect,
|
|
|
|
const IntPoint &aDestination)
|
|
|
|
{
|
2014-06-11 19:38:41 +04:00
|
|
|
if (aSurface->GetType() != SurfaceType::SKIA && aSurface->GetType() != SurfaceType::DATA) {
|
2011-11-02 23:55:03 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
MarkChanged();
|
2013-11-01 17:13:36 +04:00
|
|
|
|
2016-01-12 21:05:13 +03:00
|
|
|
SkBitmap bitmap = GetBitmapForSurface(aSurface);
|
2011-11-02 23:55:03 +04:00
|
|
|
|
|
|
|
mCanvas->save();
|
|
|
|
mCanvas->resetMatrix();
|
2014-10-08 08:16:14 +04:00
|
|
|
SkRect dest = IntRectToSkRect(IntRect(aDestination.x, aDestination.y, aSourceRect.width, aSourceRect.height));
|
2011-11-02 23:55:03 +04:00
|
|
|
SkIRect source = IntRectToSkIRect(aSourceRect);
|
|
|
|
mCanvas->clipRect(dest, SkRegion::kReplace_Op);
|
2012-05-31 22:56:33 +04:00
|
|
|
|
2016-01-13 21:11:07 +03:00
|
|
|
SkPaint paint;
|
|
|
|
if (!bitmap.isOpaque()) {
|
|
|
|
// Keep the xfermode as SOURCE_OVER for opaque bitmaps
|
2012-05-31 22:56:33 +04:00
|
|
|
// http://code.google.com/p/skia/issues/detail?id=628
|
|
|
|
paint.setXfermodeMode(SkXfermode::kSrc_Mode);
|
|
|
|
}
|
2014-06-11 07:42:32 +04:00
|
|
|
// drawBitmapRect with A8 bitmaps ends up doing a mask operation
|
|
|
|
// so we need to clear before
|
2016-01-12 21:05:13 +03:00
|
|
|
if (bitmap.colorType() == kAlpha_8_SkColorType) {
|
2016-01-13 21:11:07 +03:00
|
|
|
mCanvas->clear(SK_ColorTRANSPARENT);
|
2014-06-11 07:42:32 +04:00
|
|
|
}
|
2016-01-12 21:05:13 +03:00
|
|
|
mCanvas->drawBitmapRect(bitmap, source, dest, &paint);
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
DrawTargetSkia::Init(const IntSize &aSize, SurfaceFormat aFormat)
|
|
|
|
{
|
2015-11-19 21:35:31 +03:00
|
|
|
if (size_t(std::max(aSize.width, aSize.height)) > GetMaxSurfaceSize()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-08 19:16:46 +03:00
|
|
|
// we need to have surfaces that have a stride aligned to 4 for interop with cairo
|
|
|
|
int stride = (BytesPerPixel(aFormat)*aSize.width + (4-1)) & -4;
|
2014-06-25 02:35:07 +04:00
|
|
|
|
2015-10-08 19:16:46 +03:00
|
|
|
SkBitmap bitmap;
|
2016-01-21 17:50:43 +03:00
|
|
|
bitmap.setInfo(MakeSkiaImageInfo(aSize, aFormat), stride);
|
2015-12-18 21:53:25 +03:00
|
|
|
if (!bitmap.tryAllocPixels()) {
|
2011-11-02 23:55:03 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-05-29 20:49:40 +04:00
|
|
|
|
2016-01-13 21:11:07 +03:00
|
|
|
bitmap.eraseColor(SK_ColorTRANSPARENT);
|
2013-05-29 20:49:40 +04:00
|
|
|
|
2015-10-08 19:16:46 +03:00
|
|
|
mCanvas.adopt(new SkCanvas(bitmap));
|
2011-11-02 23:55:03 +04:00
|
|
|
mSize = aSize;
|
|
|
|
|
|
|
|
mFormat = aFormat;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-14 03:29:47 +04:00
|
|
|
#ifdef USE_SKIA_GPU
|
2016-02-03 21:49:36 +03:00
|
|
|
/** Indicating a DT should be cached means that space will be reserved in Skia's cache
|
|
|
|
* for the render target at creation time, with any unused resources exceeding the cache
|
|
|
|
* limits being purged. When the DT is freed, it will then be guaranteed to be kept around
|
|
|
|
* for subsequent allocations until it gets incidentally purged.
|
|
|
|
*
|
|
|
|
* If it is not marked as cached, no space will be purged to make room for the render
|
|
|
|
* target in the cache. When the DT is freed, If there is space within the resource limits
|
|
|
|
* it may be added to the cache, otherwise it will be freed immediately if the cache is
|
|
|
|
* already full.
|
|
|
|
*
|
|
|
|
* If you want to ensure that the resources will be kept around for reuse, it is better
|
|
|
|
* to mark them as cached. Such resources should be short-lived to ensure they don't
|
|
|
|
* permanently tie up cache resource limits. Long-lived resources should generally be
|
|
|
|
* left as uncached.
|
|
|
|
*
|
|
|
|
* In neither case will cache resource limits affect whether the resource allocation
|
|
|
|
* succeeds. The amount of in-use GPU resources is allowed to exceed the size of the cache.
|
|
|
|
* Thus, only hard GPU out-of-memory conditions will cause resource allocation to fail.
|
|
|
|
*/
|
2014-03-26 22:21:50 +04:00
|
|
|
bool
|
2014-03-06 01:49:37 +04:00
|
|
|
DrawTargetSkia::InitWithGrContext(GrContext* aGrContext,
|
|
|
|
const IntSize &aSize,
|
2016-02-03 21:49:36 +03:00
|
|
|
SurfaceFormat aFormat,
|
|
|
|
bool aCached)
|
2012-12-01 03:57:38 +04:00
|
|
|
{
|
2014-03-24 18:13:55 +04:00
|
|
|
MOZ_ASSERT(aGrContext, "null GrContext");
|
|
|
|
|
2015-11-19 21:35:31 +03:00
|
|
|
if (size_t(std::max(aSize.width, aSize.height)) > GetMaxSurfaceSize()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-21 17:51:40 +03:00
|
|
|
// Create a GPU rendertarget/texture using the supplied GrContext.
|
|
|
|
// NewRenderTarget also implicitly clears the underlying texture on creation.
|
2016-02-03 21:49:36 +03:00
|
|
|
SkAutoTUnref<SkSurface> gpuSurface(
|
|
|
|
SkSurface::NewRenderTarget(aGrContext,
|
|
|
|
SkSurface::Budgeted(aCached),
|
|
|
|
MakeSkiaImageInfo(aSize, aFormat)));
|
2015-12-18 21:53:25 +03:00
|
|
|
if (!gpuSurface) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-21 17:51:40 +03:00
|
|
|
mGrContext = aGrContext;
|
|
|
|
mSize = aSize;
|
|
|
|
mFormat = aFormat;
|
2014-03-06 01:49:37 +04:00
|
|
|
|
2015-12-18 21:53:25 +03:00
|
|
|
mCanvas = gpuSurface->getCanvas();
|
2014-03-26 22:21:50 +04:00
|
|
|
|
|
|
|
return true;
|
2013-08-28 18:08:10 +04:00
|
|
|
}
|
|
|
|
|
2013-03-14 03:29:47 +04:00
|
|
|
#endif
|
2012-12-01 03:57:38 +04:00
|
|
|
|
2012-01-19 08:48:33 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::Init(unsigned char* aData, const IntSize &aSize, int32_t aStride, SurfaceFormat aFormat)
|
|
|
|
{
|
2014-03-26 23:58:07 +04:00
|
|
|
if (aFormat == SurfaceFormat::B8G8R8X8) {
|
|
|
|
// We have to manually set the A channel to be 255 as Skia doesn't understand BGRX
|
|
|
|
ConvertBGRXToBGRA(aData, aSize, aStride);
|
|
|
|
}
|
|
|
|
|
2013-11-01 06:48:46 +04:00
|
|
|
SkBitmap bitmap;
|
2016-01-21 17:50:43 +03:00
|
|
|
bitmap.setInfo(MakeSkiaImageInfo(aSize, aFormat), aStride);
|
2013-11-01 06:48:46 +04:00
|
|
|
bitmap.setPixels(aData);
|
2016-01-21 17:50:43 +03:00
|
|
|
|
2014-11-19 01:22:01 +03:00
|
|
|
mCanvas.adopt(new SkCanvas(bitmap));
|
2013-05-29 20:49:40 +04:00
|
|
|
|
2012-01-19 08:48:33 +04:00
|
|
|
mSize = aSize;
|
|
|
|
mFormat = aFormat;
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::SetTransform(const Matrix& aTransform)
|
|
|
|
{
|
|
|
|
SkMatrix mat;
|
|
|
|
GfxMatrixToSkiaMatrix(aTransform, mat);
|
|
|
|
mCanvas->setMatrix(mat);
|
|
|
|
mTransform = aTransform;
|
|
|
|
}
|
|
|
|
|
2014-03-06 01:49:37 +04:00
|
|
|
void*
|
|
|
|
DrawTargetSkia::GetNativeSurface(NativeSurfaceType aType)
|
|
|
|
{
|
2014-10-15 07:55:37 +04:00
|
|
|
#ifdef USE_SKIA_GPU
|
2014-03-06 01:49:37 +04:00
|
|
|
if (aType == NativeSurfaceType::OPENGL_TEXTURE) {
|
2016-01-21 17:51:40 +03:00
|
|
|
// Get the current texture backing the GPU device.
|
|
|
|
// Beware - this texture is only guaranteed to valid after a draw target flush.
|
|
|
|
GrRenderTarget* rt = mCanvas->getDevice()->accessRenderTarget();
|
|
|
|
if (rt) {
|
|
|
|
GrTexture* tex = rt->asTexture();
|
|
|
|
if (tex) {
|
|
|
|
return (void*)(uintptr_t)reinterpret_cast<GrGLTextureInfo *>(tex->getTextureHandle())->fID;
|
|
|
|
}
|
|
|
|
}
|
2014-03-06 01:49:37 +04:00
|
|
|
}
|
2014-10-15 07:55:37 +04:00
|
|
|
#endif
|
2014-10-08 08:16:14 +04:00
|
|
|
return nullptr;
|
2014-03-06 01:49:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<PathBuilder>
|
2011-11-02 23:55:03 +04:00
|
|
|
DrawTargetSkia::CreatePathBuilder(FillRule aFillRule) const
|
|
|
|
{
|
2015-04-30 22:20:30 +03:00
|
|
|
return MakeAndAddRef<PathBuilderSkia>(aFillRule);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::ClearRect(const Rect &aRect)
|
|
|
|
{
|
2011-11-02 23:55:03 +04:00
|
|
|
MarkChanged();
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->save();
|
2013-10-08 23:05:57 +04:00
|
|
|
mCanvas->clipRect(RectToSkRect(aRect), SkRegion::kIntersect_Op, true);
|
2016-01-13 21:11:07 +03:00
|
|
|
mCanvas->clear(SK_ColorTRANSPARENT);
|
2011-11-02 23:55:03 +04:00
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::PushClip(const Path *aPath)
|
|
|
|
{
|
2014-01-10 23:06:16 +04:00
|
|
|
if (aPath->GetBackendType() != BackendType::SKIA) {
|
2011-11-02 23:55:03 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PathSkia *skiaPath = static_cast<const PathSkia*>(aPath);
|
2014-07-28 04:51:09 +04:00
|
|
|
mCanvas->save();
|
2013-10-08 23:05:57 +04:00
|
|
|
mCanvas->clipPath(skiaPath->GetPath(), SkRegion::kIntersect_Op, true);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2012-01-19 08:48:33 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::PushClipRect(const Rect& aRect)
|
|
|
|
{
|
|
|
|
SkRect rect = RectToSkRect(aRect);
|
|
|
|
|
2014-07-28 04:51:09 +04:00
|
|
|
mCanvas->save();
|
2013-10-08 23:05:57 +04:00
|
|
|
mCanvas->clipRect(rect, SkRegion::kIntersect_Op, true);
|
2012-01-19 08:48:33 +04:00
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
void
|
|
|
|
DrawTargetSkia::PopClip()
|
|
|
|
{
|
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
|
2016-02-09 21:36:19 +03:00
|
|
|
// Image filter that just passes the source through to the result unmodified.
|
|
|
|
class CopyLayerImageFilter : public SkImageFilter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CopyLayerImageFilter()
|
|
|
|
: SkImageFilter(0, nullptr)
|
|
|
|
{}
|
|
|
|
|
|
|
|
virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
|
|
|
|
SkBitmap* result, SkIPoint* offset) const override {
|
|
|
|
*result = src;
|
|
|
|
offset->set(0, 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SK_TO_STRING_OVERRIDE()
|
|
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(CopyLayerImageFilter)
|
|
|
|
};
|
|
|
|
|
|
|
|
SkFlattenable*
|
|
|
|
CopyLayerImageFilter::CreateProc(SkReadBuffer& buffer)
|
|
|
|
{
|
|
|
|
SK_IMAGEFILTER_UNFLATTEN_COMMON(common, 0);
|
|
|
|
return new CopyLayerImageFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef SK_IGNORE_TO_STRING
|
|
|
|
void
|
|
|
|
CopyLayerImageFilter::toString(SkString* str) const
|
|
|
|
{
|
|
|
|
str->append("CopyLayerImageFilter: ()");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-13 07:30:33 +03:00
|
|
|
void
|
|
|
|
DrawTargetSkia::PushLayer(bool aOpaque, Float aOpacity, SourceSurface* aMask,
|
|
|
|
const Matrix& aMaskTransform, const IntRect& aBounds,
|
|
|
|
bool aCopyBackground)
|
|
|
|
{
|
|
|
|
PushedLayer layer(GetPermitSubpixelAA(), aOpaque, aOpacity, aMask, aMaskTransform);
|
|
|
|
mPushedLayers.push_back(layer);
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
|
|
|
|
// If we have a mask, set the opacity to 0 so that SkCanvas::restore skips
|
|
|
|
// implicitly drawing the layer so that we can properly mask it in PopLayer.
|
|
|
|
paint.setAlpha(aMask ? 0 : ColorFloatToByte(aOpacity));
|
|
|
|
|
|
|
|
SkRect bounds = IntRectToSkRect(aBounds);
|
|
|
|
|
2016-02-09 21:36:19 +03:00
|
|
|
SkAutoTUnref<SkImageFilter> backdrop(aCopyBackground ? new CopyLayerImageFilter : nullptr);
|
|
|
|
|
|
|
|
SkCanvas::SaveLayerRec saveRec(aBounds.IsEmpty() ? nullptr : &bounds,
|
|
|
|
&paint,
|
|
|
|
backdrop.get(),
|
|
|
|
aOpaque ? SkCanvas::kIsOpaque_SaveLayerFlag : 0);
|
|
|
|
|
|
|
|
mCanvas->saveLayer(saveRec);
|
2016-01-13 07:30:33 +03:00
|
|
|
|
|
|
|
SetPermitSubpixelAA(aOpaque);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DrawTargetSkia::PopLayer()
|
|
|
|
{
|
|
|
|
MarkChanged();
|
|
|
|
|
|
|
|
MOZ_ASSERT(mPushedLayers.size());
|
|
|
|
const PushedLayer& layer = mPushedLayers.back();
|
|
|
|
|
|
|
|
if (layer.mMask) {
|
|
|
|
// If we have a mask, take a reference to the layer's bitmap device so that
|
|
|
|
// we can mask it ourselves. This assumes we forced SkCanvas::restore to
|
|
|
|
// skip implicitly drawing the layer.
|
|
|
|
SkAutoTUnref<SkBaseDevice> layerDevice(SkSafeRef(mCanvas->getTopDevice()));
|
|
|
|
SkIRect layerBounds = layerDevice->getGlobalBounds();
|
|
|
|
SkBitmap layerBitmap = layerDevice->accessBitmap(false);
|
|
|
|
|
|
|
|
// Restore the background with the layer's device left alive.
|
|
|
|
mCanvas->restore();
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAlpha(ColorFloatToByte(layer.mOpacity));
|
|
|
|
|
|
|
|
SkMatrix maskMat, layerMat;
|
|
|
|
// Get the total transform affecting the mask, considering its pattern
|
|
|
|
// transform and the current canvas transform.
|
|
|
|
GfxMatrixToSkiaMatrix(layer.mMaskTransform, maskMat);
|
|
|
|
maskMat.postConcat(mCanvas->getTotalMatrix());
|
|
|
|
if (!maskMat.invert(&layerMat)) {
|
|
|
|
gfxDebug() << *this << ": PopLayer() failed to invert mask transform";
|
|
|
|
} else {
|
|
|
|
// The layer should not be affected by the current canvas transform,
|
|
|
|
// even though the mask is. So first we use the inverse of the transform
|
|
|
|
// affecting the mask, then add back on the layer's origin.
|
|
|
|
layerMat.preTranslate(layerBounds.x(), layerBounds.y());
|
|
|
|
SkShader* shader = SkShader::CreateBitmapShader(layerBitmap,
|
|
|
|
SkShader::kClamp_TileMode,
|
|
|
|
SkShader::kClamp_TileMode,
|
|
|
|
&layerMat);
|
|
|
|
SkSafeUnref(paint.setShader(shader));
|
|
|
|
|
|
|
|
SkBitmap mask = GetBitmapForSurface(layer.mMask);
|
|
|
|
if (mask.colorType() != kAlpha_8_SkColorType &&
|
|
|
|
!mask.extractAlpha(&mask)) {
|
|
|
|
gfxDebug() << *this << ": PopLayer() failed to extract alpha for mask";
|
|
|
|
} else {
|
|
|
|
mCanvas->save();
|
|
|
|
|
|
|
|
// The layer may be smaller than the canvas size, so make sure drawing is
|
|
|
|
// clipped to within the bounds of the layer.
|
|
|
|
mCanvas->resetMatrix();
|
|
|
|
mCanvas->clipRect(SkRect::Make(layerBounds));
|
|
|
|
|
|
|
|
mCanvas->setMatrix(maskMat);
|
|
|
|
mCanvas->drawBitmap(mask, 0, 0, &paint);
|
|
|
|
|
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mCanvas->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
SetPermitSubpixelAA(layer.mOldPermitSubpixelAA);
|
|
|
|
|
|
|
|
mPushedLayers.pop_back();
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<GradientStops>
|
2011-12-28 09:56:11 +04:00
|
|
|
DrawTargetSkia::CreateGradientStops(GradientStop *aStops, uint32_t aNumStops, ExtendMode aExtendMode) const
|
2011-11-02 23:55:03 +04:00
|
|
|
{
|
|
|
|
std::vector<GradientStop> stops;
|
|
|
|
stops.resize(aNumStops);
|
|
|
|
for (uint32_t i = 0; i < aNumStops; i++) {
|
|
|
|
stops[i] = aStops[i];
|
|
|
|
}
|
|
|
|
std::stable_sort(stops.begin(), stops.end());
|
2014-10-08 08:16:14 +04:00
|
|
|
|
2015-04-30 22:20:30 +03:00
|
|
|
return MakeAndAddRef<GradientStopsSkia>(stops, aNumStops, aExtendMode);
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<FilterNode>
|
2013-11-27 15:25:28 +04:00
|
|
|
DrawTargetSkia::CreateFilter(FilterType aType)
|
|
|
|
{
|
|
|
|
return FilterNodeSoftware::Create(aType);
|
|
|
|
}
|
|
|
|
|
2011-11-02 23:55:03 +04:00
|
|
|
void
|
2013-08-02 05:12:16 +04:00
|
|
|
DrawTargetSkia::MarkChanged()
|
2013-08-03 07:35:39 +04:00
|
|
|
{
|
2013-08-02 05:12:16 +04:00
|
|
|
if (mSnapshot) {
|
|
|
|
mSnapshot->DrawTargetWillChange();
|
|
|
|
mSnapshot = nullptr;
|
2011-11-02 23:55:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-26 10:00:19 +03:00
|
|
|
void
|
|
|
|
DrawTargetSkia::SnapshotDestroyed()
|
|
|
|
{
|
|
|
|
mSnapshot = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|