2014-08-01 20:01:47 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#ifndef MOZILLA_GFX_DRAWTARGETCAPTURE_H_
|
|
|
|
#define MOZILLA_GFX_DRAWTARGETCAPTURE_H_
|
|
|
|
|
|
|
|
#include "2D.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Filters.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
class DrawingCommand;
|
|
|
|
|
|
|
|
class DrawTargetCaptureImpl : public DrawTargetCapture
|
|
|
|
{
|
|
|
|
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-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-06-22 00:19:42 +03:00
|
|
|
CompositionOp aOperator) override { /* Not implemented */ }
|
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,
|
|
|
|
const DrawOptions &aOptions = DrawOptions(),
|
2017-06-22 00:19:42 +03:00
|
|
|
const GlyphRenderingOptions *aRenderingOptions = nullptr) override;
|
2017-07-15 03:48:00 +03:00
|
|
|
virtual void StrokeGlyphs(ScaledFont* aFont,
|
|
|
|
const GlyphBuffer& aBuffer,
|
|
|
|
const Pattern& aPattern,
|
|
|
|
const StrokeOptions& aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions& aOptions = DrawOptions(),
|
|
|
|
const GlyphRenderingOptions* aRenderingOptions = nullptr) 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;
|
|
|
|
|
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
|
|
|
|
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-06-22 00:19:42 +03:00
|
|
|
virtual already_AddRefed<SourceSurface> OptimizeSourceSurface(SourceSurface *aSurface) const override
|
2014-08-01 20:01:47 +04:00
|
|
|
{
|
|
|
|
return mRefDT->OptimizeSourceSurface(aSurface);
|
|
|
|
}
|
|
|
|
|
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-06-22 00:19:42 +03:00
|
|
|
CreateSimilarDrawTarget(const IntSize &aSize, SurfaceFormat aFormat) const override
|
2014-08-01 20:01:47 +04:00
|
|
|
{
|
|
|
|
return mRefDT->CreateSimilarDrawTarget(aSize, aFormat);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// 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>
|
|
|
|
T* AppendToCommandList()
|
|
|
|
{
|
|
|
|
size_t oldSize = mDrawCommandStorage.size();
|
|
|
|
mDrawCommandStorage.resize(mDrawCommandStorage.size() + sizeof(T) + sizeof(uint32_t));
|
|
|
|
uint8_t* nextDrawLocation = &mDrawCommandStorage.front() + oldSize;
|
|
|
|
*(uint32_t*)(nextDrawLocation) = sizeof(T) + sizeof(uint32_t);
|
|
|
|
return reinterpret_cast<T*>(nextDrawLocation + sizeof(uint32_t));
|
|
|
|
}
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DrawTarget> mRefDT;
|
2014-08-01 20:01:47 +04:00
|
|
|
IntSize mSize;
|
|
|
|
|
2017-09-20 20:23:01 +03:00
|
|
|
struct PushedLayer
|
|
|
|
{
|
|
|
|
PushedLayer(bool aOldPermitSubpixelAA)
|
|
|
|
: mOldPermitSubpixelAA(aOldPermitSubpixelAA)
|
|
|
|
{}
|
|
|
|
bool mOldPermitSubpixelAA;
|
|
|
|
};
|
|
|
|
std::vector<PushedLayer> mPushedLayers;
|
2014-08-01 20:01:47 +04:00
|
|
|
std::vector<uint8_t> mDrawCommandStorage;
|
|
|
|
};
|
|
|
|
|
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_ */
|