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_
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
class DrawTargetCaptureImpl : public DrawTargetCapture
|
|
|
|
{
|
2017-10-31 22:02:31 +03:00
|
|
|
friend class SourceSurfaceCapture;
|
|
|
|
|
2014-08-01 20:01:47 +04:00
|
|
|
public:
|
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
|
|
|
|
2017-06-22 00:19:42 +03:00
|
|
|
virtual BackendType GetBackendType() const override { return mRefDT->GetBackendType(); }
|
|
|
|
virtual DrawTargetType GetType() const override { return mRefDT->GetType(); }
|
|
|
|
virtual bool IsCaptureDT() const override { return true; }
|
|
|
|
virtual already_AddRefed<SourceSurface> Snapshot() override;
|
2017-09-13 22:15:16 +03:00
|
|
|
virtual void SetPermitSubpixelAA(bool aPermitSubpixelAA) override;
|
2017-06-22 00:19:42 +03:00
|
|
|
virtual void DetachAllSnapshots() override;
|
|
|
|
virtual IntSize GetSize() override { return mSize; }
|
|
|
|
virtual void Flush() override {}
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void DrawSurface(SourceSurface *aSurface,
|
|
|
|
const Rect &aDest,
|
|
|
|
const Rect &aSource,
|
|
|
|
const DrawSurfaceOptions &aSurfOptions,
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void DrawFilter(FilterNode *aNode,
|
|
|
|
const Rect &aSourceRect,
|
|
|
|
const Point &aDestPoint,
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void DrawSurfaceWithShadow(SourceSurface *aSurface,
|
|
|
|
const Point &aDest,
|
|
|
|
const Color &aColor,
|
|
|
|
const Point &aOffset,
|
|
|
|
Float aSigma,
|
2017-10-31 22:02:31 +03:00
|
|
|
CompositionOp aOperator) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-06-22 00:19:42 +03:00
|
|
|
virtual void ClearRect(const Rect &aRect) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void MaskSurface(const Pattern &aSource,
|
|
|
|
SourceSurface *aMask,
|
|
|
|
Point aOffset,
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void CopySurface(SourceSurface *aSurface,
|
|
|
|
const IntRect &aSourceRect,
|
2017-06-22 00:19:42 +03:00
|
|
|
const IntPoint &aDestination) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
|
|
|
virtual void FillRect(const Rect &aRect,
|
|
|
|
const Pattern &aPattern,
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void StrokeRect(const Rect &aRect,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions = StrokeOptions(),
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void StrokeLine(const Point &aStart,
|
|
|
|
const Point &aEnd,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions = StrokeOptions(),
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void Stroke(const Path *aPath,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions = StrokeOptions(),
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void Fill(const Path *aPath,
|
|
|
|
const Pattern &aPattern,
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void FillGlyphs(ScaledFont *aFont,
|
|
|
|
const GlyphBuffer &aBuffer,
|
|
|
|
const Pattern &aPattern,
|
2017-11-03 04:42:56 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
2017-07-15 03:48:00 +03:00
|
|
|
virtual void StrokeGlyphs(ScaledFont* aFont,
|
|
|
|
const GlyphBuffer& aBuffer,
|
|
|
|
const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions = StrokeOptions(),
|
2017-11-03 04:42:56 +03:00
|
|
|
const DrawOptions& aOptions = DrawOptions()) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
virtual void Mask(const Pattern &aSource,
|
|
|
|
const Pattern &aMask,
|
2017-06-22 00:19:42 +03:00
|
|
|
const DrawOptions &aOptions = DrawOptions()) override;
|
|
|
|
virtual void PushClip(const Path *aPath) override;
|
|
|
|
virtual void PushClipRect(const Rect &aRect) override;
|
|
|
|
virtual void PopClip() override;
|
|
|
|
virtual void PushLayer(bool aOpaque,
|
|
|
|
Float aOpacity,
|
|
|
|
SourceSurface* aMask,
|
|
|
|
const Matrix& aMaskTransform,
|
|
|
|
const IntRect& aBounds,
|
|
|
|
bool aCopyBackground) override;
|
|
|
|
virtual void PopLayer() override;
|
2017-10-31 22:02:30 +03:00
|
|
|
virtual void Blur(const AlphaBoxBlur& aBlur) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-06-22 00:19:42 +03:00
|
|
|
virtual void SetTransform(const Matrix &aTransform) override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-10-06 19:27:41 +03:00
|
|
|
virtual bool SupportsRegionClipping() const override { return mRefDT->SupportsRegionClipping(); }
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<SourceSurface> CreateSourceSurfaceFromData(unsigned char *aData,
|
2014-08-01 20:01:47 +04:00
|
|
|
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);
|
|
|
|
}
|
2017-10-31 22:02:31 +03:00
|
|
|
virtual already_AddRefed<SourceSurface> OptimizeSourceSurface(SourceSurface *aSurface) const override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<SourceSurface>
|
2017-06-22 00:19:42 +03:00
|
|
|
CreateSourceSurfaceFromNativeSurface(const NativeSurface &aSurface) const override
|
2014-08-01 20:01:47 +04:00
|
|
|
{
|
|
|
|
return mRefDT->CreateSourceSurfaceFromNativeSurface(aSurface);
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<DrawTarget>
|
2017-10-31 22:02:32 +03:00
|
|
|
CreateSimilarDrawTarget(const IntSize &aSize, SurfaceFormat aFormat) const override;
|
2017-10-31 22:02:32 +03:00
|
|
|
virtual RefPtr<DrawTarget>
|
|
|
|
CreateSimilarRasterTarget(const IntSize& aSize, SurfaceFormat aFormat) const override;
|
2014-08-01 20:01:47 +04:00
|
|
|
|
2017-06-22 00:19:42 +03:00
|
|
|
virtual already_AddRefed<PathBuilder> CreatePathBuilder(FillRule aFillRule = FillRule::FILL_WINDING) const override
|
2014-08-01 20:01:47 +04:00
|
|
|
{
|
|
|
|
return mRefDT->CreatePathBuilder(aFillRule);
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<GradientStops>
|
2014-08-01 20:01:47 +04:00
|
|
|
CreateGradientStops(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);
|
|
|
|
}
|
2017-06-22 00:19:42 +03:00
|
|
|
virtual already_AddRefed<FilterNode> CreateFilter(FilterType aType) override
|
2014-08-01 20:01:47 +04:00
|
|
|
{
|
|
|
|
return mRefDT->CreateFilter(aType);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReplayToDrawTarget(DrawTarget* aDT, const Matrix& aTransform);
|
|
|
|
|
2017-06-22 00:19:42 +03:00
|
|
|
bool ContainsOnlyColoredGlyphs(RefPtr<ScaledFont>& aScaledFont, Color& aColor, std::vector<Glyph>& aGlyphs) override;
|
2016-11-24 08:11:29 +03:00
|
|
|
|
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:
|
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();
|
|
|
|
}
|
2017-10-31 22:02:30 +03:00
|
|
|
return mCommands.Append<T>();
|
2014-08-01 20:01:47 +04:00
|
|
|
}
|
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;
|
2017-10-31 22:02:30 +03:00
|
|
|
|
|
|
|
CaptureCommandList mCommands;
|
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_ */
|