2018-08-03 17:48:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "DrawTargetOffset.h"
|
|
|
|
#include "Logging.h"
|
|
|
|
#include "PathHelpers.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
DrawTargetOffset::DrawTargetOffset() {}
|
|
|
|
|
|
|
|
bool DrawTargetOffset::Init(DrawTarget* aDrawTarget, IntPoint aOrigin) {
|
|
|
|
mDrawTarget = aDrawTarget;
|
|
|
|
mOrigin = aOrigin;
|
|
|
|
mDrawTarget->SetTransform(Matrix::Translation(-mOrigin.x, -mOrigin.y));
|
|
|
|
mFormat = mDrawTarget->GetFormat();
|
|
|
|
SetPermitSubpixelAA(IsOpaque(mFormat));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<SourceSurface> DrawTargetOffset::Snapshot() {
|
2019-01-26 02:06:24 +03:00
|
|
|
return MakeAndAddRef<SourceSurfaceOffset>(mDrawTarget->Snapshot(), mOrigin);
|
2018-08-03 17:48:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::DetachAllSnapshots() {}
|
|
|
|
|
|
|
|
// Skip the mClippedOut check since this is only used for Flush() which
|
|
|
|
// should happen even if we're clipped.
|
|
|
|
#define OFFSET_COMMAND(command) \
|
|
|
|
void DrawTargetOffset::command() { mDrawTarget->command(); }
|
|
|
|
#define OFFSET_COMMAND1(command, type1) \
|
|
|
|
void DrawTargetOffset::command(type1 arg1) { mDrawTarget->command(arg1); }
|
|
|
|
#define OFFSET_COMMAND3(command, type1, type2, type3) \
|
|
|
|
void DrawTargetOffset::command(type1 arg1, type2 arg2, type3 arg3) { \
|
|
|
|
mDrawTarget->command(arg1, arg2, arg3); \
|
|
|
|
}
|
|
|
|
#define OFFSET_COMMAND4(command, type1, type2, type3, type4) \
|
|
|
|
void DrawTargetOffset::command(type1 arg1, type2 arg2, type3 arg3, \
|
|
|
|
type4 arg4) { \
|
|
|
|
mDrawTarget->command(arg1, arg2, arg3, arg4); \
|
|
|
|
}
|
|
|
|
#define OFFSET_COMMAND5(command, type1, type2, type3, type4, type5) \
|
|
|
|
void DrawTargetOffset::command(type1 arg1, type2 arg2, type3 arg3, \
|
|
|
|
type4 arg4, type5 arg5) { \
|
|
|
|
mDrawTarget->command(arg1, arg2, arg3, arg4, arg5); \
|
|
|
|
}
|
|
|
|
|
|
|
|
OFFSET_COMMAND(Flush)
|
|
|
|
OFFSET_COMMAND1(ClearRect, const Rect&)
|
|
|
|
OFFSET_COMMAND4(MaskSurface, const Pattern&, SourceSurface*, Point,
|
|
|
|
const DrawOptions&)
|
|
|
|
OFFSET_COMMAND4(FillGlyphs, ScaledFont*, const GlyphBuffer&, const Pattern&,
|
|
|
|
const DrawOptions&)
|
2019-06-28 21:41:17 +03:00
|
|
|
OFFSET_COMMAND5(StrokeGlyphs, ScaledFont*, const GlyphBuffer&, const Pattern&,
|
|
|
|
const StrokeOptions&, const DrawOptions&)
|
|
|
|
OFFSET_COMMAND3(FillRoundedRect, const RoundedRect&, const Pattern&,
|
|
|
|
const DrawOptions&)
|
|
|
|
|
2019-07-16 10:33:44 +03:00
|
|
|
bool DrawTargetOffset::Draw3DTransformedSurface(SourceSurface* aSrc,
|
2019-06-28 21:41:17 +03:00
|
|
|
const Matrix4x4& aMatrix) {
|
2019-07-16 10:33:44 +03:00
|
|
|
return mDrawTarget->Draw3DTransformedSurface(aSrc, aMatrix);
|
2019-06-28 21:41:17 +03:00
|
|
|
}
|
|
|
|
|
2018-08-03 17:48:37 +03:00
|
|
|
OFFSET_COMMAND3(Mask, const Pattern&, const Pattern&, const DrawOptions&)
|
|
|
|
|
2018-08-02 04:26:40 +03:00
|
|
|
void DrawTargetOffset::DrawFilter(FilterNode* aNode, const Rect& aSourceRect,
|
|
|
|
const Point& aDestPoint,
|
|
|
|
const DrawOptions& aOptions) {
|
|
|
|
auto clone = mTransform;
|
|
|
|
bool invertible = clone.Invert();
|
2018-11-07 00:03:29 +03:00
|
|
|
// aSourceRect is in filter space. The filter outputs from aSourceRect need
|
|
|
|
// to be drawn at aDestPoint in user space.
|
|
|
|
Rect userSpaceSource = Rect(aDestPoint, aSourceRect.Size());
|
2018-08-02 04:26:40 +03:00
|
|
|
if (invertible) {
|
|
|
|
// Try to reduce the source rect so that it's not much bigger
|
|
|
|
// than the draw target. The result is not minimal. Examples
|
|
|
|
// are left as an exercise for the reader.
|
2019-12-04 04:45:52 +03:00
|
|
|
auto destRect = Rect(mDrawTarget->GetRect() + mOrigin);
|
2018-11-07 00:03:29 +03:00
|
|
|
Rect userSpaceBounds = clone.TransformBounds(destRect);
|
|
|
|
userSpaceSource = userSpaceSource.Intersect(userSpaceBounds);
|
2018-08-02 04:26:40 +03:00
|
|
|
}
|
2018-11-07 00:03:29 +03:00
|
|
|
|
|
|
|
// Compute how much we moved the top-left of the source rect by, and use that
|
|
|
|
// to compute the new dest point, and move our intersected source rect back
|
|
|
|
// into the (new) filter space.
|
|
|
|
Point shift = userSpaceSource.TopLeft() - aDestPoint;
|
|
|
|
Rect filterSpaceSource =
|
|
|
|
Rect(aSourceRect.TopLeft() + shift, userSpaceSource.Size());
|
|
|
|
mDrawTarget->DrawFilter(aNode, filterSpaceSource, aDestPoint + shift,
|
|
|
|
aOptions);
|
2018-08-02 04:26:40 +03:00
|
|
|
}
|
|
|
|
|
2018-08-03 17:48:37 +03:00
|
|
|
void DrawTargetOffset::PushClip(const Path* aPath) {
|
|
|
|
mDrawTarget->PushClip(aPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::PushClipRect(const Rect& aRect) {
|
|
|
|
mDrawTarget->PushClipRect(aRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::PopClip() { mDrawTarget->PopClip(); }
|
|
|
|
|
|
|
|
void DrawTargetOffset::CopySurface(SourceSurface* aSurface,
|
|
|
|
const IntRect& aSourceRect,
|
|
|
|
const IntPoint& aDestination) {
|
|
|
|
IntPoint tileOrigin = mOrigin;
|
|
|
|
// CopySurface ignores the transform, account for that here.
|
|
|
|
mDrawTarget->CopySurface(aSurface, aSourceRect, aDestination - tileOrigin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::SetTransform(const Matrix& aTransform) {
|
|
|
|
Matrix mat = aTransform;
|
|
|
|
mat.PostTranslate(Float(-mOrigin.x), Float(-mOrigin.y));
|
|
|
|
mDrawTarget->SetTransform(mat);
|
|
|
|
|
|
|
|
DrawTarget::SetTransform(aTransform);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::SetPermitSubpixelAA(bool aPermitSubpixelAA) {
|
|
|
|
mDrawTarget->SetPermitSubpixelAA(aPermitSubpixelAA);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::DrawSurface(SourceSurface* aSurface, const Rect& aDest,
|
|
|
|
const Rect& aSource,
|
|
|
|
const DrawSurfaceOptions& aSurfaceOptions,
|
|
|
|
const DrawOptions& aDrawOptions) {
|
|
|
|
mDrawTarget->DrawSurface(aSurface, aDest, aSource, aSurfaceOptions,
|
|
|
|
aDrawOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::FillRect(const Rect& aRect, const Pattern& aPattern,
|
|
|
|
const DrawOptions& aDrawOptions) {
|
|
|
|
mDrawTarget->FillRect(aRect, aPattern, aDrawOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::Stroke(const Path* aPath, const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions,
|
|
|
|
const DrawOptions& aDrawOptions) {
|
|
|
|
mDrawTarget->Stroke(aPath, aPattern, aStrokeOptions, aDrawOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::StrokeRect(const Rect& aRect, const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions,
|
|
|
|
const DrawOptions& aDrawOptions) {
|
|
|
|
mDrawTarget->StrokeRect(aRect, aPattern, aStrokeOptions, aDrawOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::StrokeLine(const Point& aStart, const Point& aEnd,
|
|
|
|
const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions,
|
|
|
|
const DrawOptions& aDrawOptions) {
|
|
|
|
mDrawTarget->StrokeLine(aStart, aEnd, aPattern, aStrokeOptions, aDrawOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::Fill(const Path* aPath, const Pattern& aPattern,
|
|
|
|
const DrawOptions& aDrawOptions) {
|
|
|
|
mDrawTarget->Fill(aPath, aPattern, aDrawOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::PushLayer(bool aOpaque, Float aOpacity,
|
|
|
|
SourceSurface* aMask,
|
|
|
|
const Matrix& aMaskTransform,
|
|
|
|
const IntRect& aBounds, bool aCopyBackground) {
|
2018-11-07 00:03:29 +03:00
|
|
|
IntRect bounds = aBounds - mOrigin;
|
|
|
|
|
2018-08-03 17:48:37 +03:00
|
|
|
mDrawTarget->PushLayer(aOpaque, aOpacity, aMask, aMaskTransform, bounds,
|
|
|
|
aCopyBackground);
|
2018-11-07 00:03:29 +03:00
|
|
|
SetPermitSubpixelAA(mDrawTarget->GetPermitSubpixelAA());
|
2018-08-03 17:48:37 +03:00
|
|
|
}
|
|
|
|
|
2019-03-05 06:30:09 +03:00
|
|
|
already_AddRefed<SourceSurface> DrawTargetOffset::IntoLuminanceSource(
|
|
|
|
LuminanceType aLuminanceType, float aOpacity) {
|
|
|
|
return MakeAndAddRef<SourceSurfaceOffset>(
|
2019-06-06 17:11:27 +03:00
|
|
|
mDrawTarget->IntoLuminanceSource(aLuminanceType, aOpacity), mOrigin);
|
2019-03-05 06:30:09 +03:00
|
|
|
}
|
|
|
|
|
2018-08-03 17:48:37 +03:00
|
|
|
void DrawTargetOffset::PushLayerWithBlend(bool aOpaque, Float aOpacity,
|
|
|
|
SourceSurface* aMask,
|
|
|
|
const Matrix& aMaskTransform,
|
|
|
|
const IntRect& aBounds,
|
|
|
|
bool aCopyBackground,
|
|
|
|
CompositionOp aOp) {
|
2018-11-07 00:03:29 +03:00
|
|
|
IntRect bounds = aBounds - mOrigin;
|
|
|
|
|
2018-08-03 17:48:37 +03:00
|
|
|
mDrawTarget->PushLayerWithBlend(aOpaque, aOpacity, aMask, aMaskTransform,
|
|
|
|
bounds, aCopyBackground, aOp);
|
2018-11-07 00:03:29 +03:00
|
|
|
SetPermitSubpixelAA(mDrawTarget->GetPermitSubpixelAA());
|
2018-08-03 17:48:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTargetOffset::PopLayer() {
|
|
|
|
mDrawTarget->PopLayer();
|
2018-11-07 00:03:29 +03:00
|
|
|
SetPermitSubpixelAA(mDrawTarget->GetPermitSubpixelAA());
|
2018-08-03 17:48:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|