2017-10-28 02:10:06 +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
|
2014-08-01 20:01:47 +04:00
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#ifndef MOZILLA_GFX_DRAWTARGETCAPTURE_H_
|
|
|
|
#define MOZILLA_GFX_DRAWTARGETCAPTURE_H_
|
|
|
|
|
2019-06-21 12:51:00 +03:00
|
|
|
#include <vector>
|
|
|
|
#include <stack>
|
|
|
|
|
2014-08-01 20:01:47 +04:00
|
|
|
#include "2D.h"
|
2017-10-31 22:02:30 +03:00
|
|
|
#include "CaptureCommandList.h"
|
2014-08-01 20:01:47 +04:00
|
|
|
|
|
|
|
#include "Filters.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
class DrawingCommand;
|
2017-10-31 22:02:31 +03:00
|
|
|
class SourceSurfaceCapture;
|
2017-10-31 22:02:30 +03:00
|
|
|
class AlphaBoxBlur;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
class DrawTargetCaptureImpl final : public DrawTargetCapture {
|
2017-10-31 22:02:31 +03:00
|
|
|
friend class SourceSurfaceCapture;
|
|
|
|
|
2014-08-01 20:01:47 +04:00
|
|
|
public:
|
2018-07-27 00:33:07 +03:00
|
|
|
DrawTargetCaptureImpl(gfx::DrawTarget* aTarget, size_t aFlushBytes);
|
2017-07-27 01:43:00 +03:00
|
|
|
DrawTargetCaptureImpl(BackendType aBackend, const IntSize& aSize,
|
|
|
|
SurfaceFormat aFormat);
|
2014-08-01 20:01:47 +04:00
|
|
|
|
|
|
|
bool Init(const IntSize& aSize, DrawTarget* aRefDT);
|
2017-10-31 22:02:29 +03:00
|
|
|
void InitForData(int32_t aStride, size_t aSurfaceAllocationSize);
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
BackendType GetBackendType() const override {
|
2017-06-22 00:19:42 +03:00
|
|
|
return mRefDT->GetBackendType();
|
|
|
|
}
|
2019-04-11 15:36:51 +03:00
|
|
|
DrawTargetType GetType() const override { return mRefDT->GetType(); }
|
|
|
|
bool IsCaptureDT() const override { return true; }
|
|
|
|
already_AddRefed<SourceSurface> Snapshot() override;
|
|
|
|
already_AddRefed<SourceSurface> IntoLuminanceSource(
|
2017-11-21 18:41:08 +03:00
|
|
|
LuminanceType aLuminanceType, float aOpacity) override;
|
2019-04-11 15:36:51 +03:00
|
|
|
void SetPermitSubpixelAA(bool aPermitSubpixelAA) override;
|
|
|
|
void DetachAllSnapshots() override;
|
|
|
|
IntSize GetSize() const override { return mSize; }
|
|
|
|
void Flush() override {}
|
|
|
|
void DrawSurface(SourceSurface* aSurface, const Rect& aDest,
|
|
|
|
const Rect& aSource, const DrawSurfaceOptions& aSurfOptions,
|
|
|
|
const DrawOptions& aOptions) override;
|
|
|
|
void DrawFilter(FilterNode* aNode, const Rect& aSourceRect,
|
|
|
|
const Point& aDestPoint,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void DrawSurfaceWithShadow(SourceSurface* aSurface, const Point& aDest,
|
2020-03-09 17:16:17 +03:00
|
|
|
const DeviceColor& aColor, const Point& aOffset,
|
2019-04-11 15:36:51 +03:00
|
|
|
Float aSigma, CompositionOp aOperator) override;
|
|
|
|
|
|
|
|
void ClearRect(const Rect& aRect) override;
|
|
|
|
void MaskSurface(const Pattern& aSource, SourceSurface* aMask, Point aOffset,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void CopySurface(SourceSurface* aSurface, const IntRect& aSourceRect,
|
|
|
|
const IntPoint& aDestination) override;
|
|
|
|
void CopyRect(const IntRect& aSourceRect,
|
|
|
|
const IntPoint& aDestination) override;
|
2019-05-01 11:47:10 +03:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
void FillRect(const Rect& aRect, const Pattern& aPattern,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void FillRoundedRect(const RoundedRect& aRect, const Pattern& aPattern,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void StrokeRect(const Rect& aRect, const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void StrokeLine(const Point& aStart, const Point& aEnd,
|
|
|
|
const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void Stroke(const Path* aPath, const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void Fill(const Path* aPath, const Pattern& aPattern,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void FillGlyphs(ScaledFont* aFont, const GlyphBuffer& aBuffer,
|
|
|
|
const Pattern& aPattern,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void StrokeGlyphs(ScaledFont* aFont, const GlyphBuffer& aBuffer,
|
|
|
|
const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions = StrokeOptions(),
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
2019-04-11 15:36:51 +03:00
|
|
|
void Mask(const Pattern& aSource, const Pattern& aMask,
|
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
|
|
|
void PushClip(const Path* aPath) override;
|
|
|
|
void PushClipRect(const Rect& aRect) override;
|
|
|
|
void PopClip() override;
|
|
|
|
void PushLayer(bool aOpaque, Float aOpacity, SourceSurface* aMask,
|
|
|
|
const Matrix& aMaskTransform, const IntRect& aBounds,
|
|
|
|
bool aCopyBackground) override;
|
|
|
|
void PopLayer() override;
|
|
|
|
void Blur(const AlphaBoxBlur& aBlur) override;
|
|
|
|
void PadEdges(const IntRegion& aRegion) override;
|
|
|
|
|
|
|
|
void SetTransform(const Matrix& aTransform) override;
|
|
|
|
|
|
|
|
bool SupportsRegionClipping() const override {
|
2017-10-06 19:27:41 +03:00
|
|
|
return mRefDT->SupportsRegionClipping();
|
|
|
|
}
|
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<SourceSurface> CreateSourceSurfaceFromData(
|
2014-08-01 20:01:47 +04:00
|
|
|
unsigned char* aData, const IntSize& aSize, int32_t aStride,
|
2017-06-22 00:19:42 +03:00
|
|
|
SurfaceFormat aFormat) const override {
|
2014-08-01 20:01:47 +04:00
|
|
|
return mRefDT->CreateSourceSurfaceFromData(aData, aSize, aStride, aFormat);
|
|
|
|
}
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<SourceSurface> OptimizeSourceSurface(
|
2017-10-31 22:02:31 +03:00
|
|
|
SourceSurface* aSurface) const override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<SourceSurface> CreateSourceSurfaceFromNativeSurface(
|
2017-06-22 00:19:42 +03:00
|
|
|
const NativeSurface& aSurface) const override {
|
2014-08-01 20:01:47 +04:00
|
|
|
return mRefDT->CreateSourceSurfaceFromNativeSurface(aSurface);
|
|
|
|
}
|
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<DrawTarget> CreateSimilarDrawTarget(
|
2017-10-31 22:02:32 +03:00
|
|
|
const IntSize& aSize, SurfaceFormat aFormat) const override;
|
2019-04-11 15:36:51 +03:00
|
|
|
RefPtr<DrawTarget> CreateSimilarRasterTarget(
|
2017-10-31 22:02:32 +03:00
|
|
|
const IntSize& aSize, SurfaceFormat aFormat) const override;
|
2019-06-21 12:51:00 +03:00
|
|
|
RefPtr<DrawTarget> CreateClippedDrawTarget(const Rect& aBounds,
|
|
|
|
SurfaceFormat aFormat) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<PathBuilder> CreatePathBuilder(
|
2019-01-14 03:16:17 +03:00
|
|
|
FillRule aFillRule = FillRule::FILL_WINDING) const override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<GradientStops> CreateGradientStops(
|
2014-08-01 20:01:47 +04:00
|
|
|
GradientStop* aStops, uint32_t aNumStops,
|
2017-06-22 00:19:42 +03:00
|
|
|
ExtendMode aExtendMode = ExtendMode::CLAMP) const override {
|
2014-08-01 20:01:47 +04:00
|
|
|
return mRefDT->CreateGradientStops(aStops, aNumStops, aExtendMode);
|
|
|
|
}
|
2019-04-11 15:36:51 +03:00
|
|
|
already_AddRefed<FilterNode> CreateFilter(FilterType aType) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
|
|
|
void ReplayToDrawTarget(DrawTarget* aDT, const Matrix& aTransform);
|
|
|
|
|
2018-08-01 01:47:51 +03:00
|
|
|
bool IsEmpty() const override;
|
2018-02-06 07:00:45 +03:00
|
|
|
void Dump() override;
|
|
|
|
|
2014-08-01 20:01:47 +04:00
|
|
|
protected:
|
2017-07-27 01:43:00 +03:00
|
|
|
virtual ~DrawTargetCaptureImpl();
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-10-31 22:02:31 +03:00
|
|
|
void MarkChanged();
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-10-31 22:02:31 +03:00
|
|
|
private:
|
2018-07-27 00:33:07 +03:00
|
|
|
void FlushCommandBuffer() {
|
|
|
|
ReplayToDrawTarget(mRefDT, Matrix());
|
|
|
|
mCommands.Clear();
|
|
|
|
}
|
|
|
|
|
2014-08-01 20:01:47 +04:00
|
|
|
// This storage system was used to minimize the amount of heap allocations
|
|
|
|
// that are required while recording. It should be noted there's no
|
|
|
|
// guarantees on the alignments of DrawingCommands allocated in this array.
|
|
|
|
template <typename T>
|
2017-10-31 22:02:30 +03:00
|
|
|
T* AppendToCommandList() {
|
2017-10-31 22:02:31 +03:00
|
|
|
if (T::AffectsSnapshot) {
|
|
|
|
MarkChanged();
|
|
|
|
}
|
2018-07-27 00:33:07 +03:00
|
|
|
if (mFlushBytes && mCommands.BufferWillAlloc<T>() &&
|
|
|
|
mCommands.BufferCapacity() > mFlushBytes) {
|
|
|
|
FlushCommandBuffer();
|
|
|
|
}
|
2017-10-31 22:02:30 +03:00
|
|
|
return mCommands.Append<T>();
|
2014-08-01 20:01:47 +04:00
|
|
|
}
|
2018-02-02 18:59:35 +03:00
|
|
|
template <typename T>
|
|
|
|
T* ReuseOrAppendToCommandList() {
|
|
|
|
if (T::AffectsSnapshot) {
|
|
|
|
MarkChanged();
|
|
|
|
}
|
2018-07-27 00:33:07 +03:00
|
|
|
if (mFlushBytes && mCommands.BufferWillAlloc<T>() &&
|
|
|
|
mCommands.BufferCapacity() > mFlushBytes) {
|
|
|
|
FlushCommandBuffer();
|
|
|
|
}
|
2018-02-02 18:59:35 +03:00
|
|
|
return mCommands.ReuseOrAppend<T>();
|
|
|
|
}
|
2017-10-31 22:02:30 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DrawTarget> mRefDT;
|
2014-08-01 20:01:47 +04:00
|
|
|
IntSize mSize;
|
2017-10-31 22:02:31 +03:00
|
|
|
RefPtr<SourceSurfaceCapture> mSnapshot;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-10-31 22:02:29 +03:00
|
|
|
// These are set if the draw target must be explicitly backed by data.
|
|
|
|
int32_t mStride;
|
|
|
|
size_t mSurfaceAllocationSize;
|
|
|
|
|
2017-09-20 20:23:01 +03:00
|
|
|
struct PushedLayer {
|
2017-09-22 18:25:17 +03:00
|
|
|
explicit PushedLayer(bool aOldPermitSubpixelAA)
|
2017-09-20 20:23:01 +03:00
|
|
|
: mOldPermitSubpixelAA(aOldPermitSubpixelAA) {}
|
|
|
|
bool mOldPermitSubpixelAA;
|
|
|
|
};
|
|
|
|
std::vector<PushedLayer> mPushedLayers;
|
2019-06-21 12:51:00 +03:00
|
|
|
std::stack<IntRect> mCurrentClipBounds;
|
2017-10-31 22:02:30 +03:00
|
|
|
|
|
|
|
CaptureCommandList mCommands;
|
2018-07-27 00:33:07 +03:00
|
|
|
size_t mFlushBytes;
|
2014-08-01 20:01:47 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-08-01 20:01:47 +04:00
|
|
|
#endif /* MOZILLA_GFX_DRAWTARGETCAPTURE_H_ */
|