2011-11-02 19:55:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00: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 19:55:03 +00:00
|
|
|
|
2014-04-16 16:17:22 +00:00
|
|
|
#ifndef _MOZILLA_GFX_SOURCESURFACESKIA_H
|
|
|
|
#define _MOZILLA_GFX_SOURCESURFACESKIA_H
|
2011-11-02 19:55:03 +00:00
|
|
|
|
2013-03-13 23:29:47 +00:00
|
|
|
#ifdef USE_SKIA_GPU
|
2012-11-30 23:57:38 +00:00
|
|
|
#include "skia/GrContext.h"
|
|
|
|
#include "skia/GrGLInterface.h"
|
2013-03-13 23:29:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "skia/SkCanvas.h"
|
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
#include "2D.h"
|
2014-08-06 16:01:44 +00:00
|
|
|
#include "HelpersSkia.h"
|
2011-11-02 19:55:03 +00:00
|
|
|
#include "Rect.h"
|
|
|
|
#include "PathSkia.h"
|
|
|
|
#include <sstream>
|
2011-11-02 19:55:03 +00:00
|
|
|
#include <vector>
|
2011-11-02 19:55:03 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
class SourceSurfaceSkia;
|
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
class DrawTargetSkia : public DrawTarget
|
|
|
|
{
|
|
|
|
public:
|
2014-02-24 13:23:37 +00:00
|
|
|
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(DrawTargetSkia)
|
2011-11-02 19:55:03 +00:00
|
|
|
DrawTargetSkia();
|
|
|
|
virtual ~DrawTargetSkia();
|
|
|
|
|
2014-06-27 09:17:49 +00:00
|
|
|
virtual DrawTargetType GetType() const MOZ_OVERRIDE;
|
2014-06-19 20:35:33 +00:00
|
|
|
virtual BackendType GetBackendType() const { return BackendType::SKIA; }
|
2011-11-02 19:55:03 +00:00
|
|
|
virtual TemporaryRef<SourceSurface> Snapshot();
|
|
|
|
virtual IntSize GetSize() { return mSize; }
|
|
|
|
virtual void Flush();
|
|
|
|
virtual void DrawSurface(SourceSurface *aSurface,
|
|
|
|
const Rect &aDest,
|
|
|
|
const Rect &aSource,
|
|
|
|
const DrawSurfaceOptions &aSurfOptions = DrawSurfaceOptions(),
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
2013-11-27 11:25:28 +00:00
|
|
|
virtual void DrawFilter(FilterNode *aNode,
|
|
|
|
const Rect &aSourceRect,
|
|
|
|
const Point &aDestPoint,
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
2011-11-02 19:55:03 +00:00
|
|
|
virtual void DrawSurfaceWithShadow(SourceSurface *aSurface,
|
|
|
|
const Point &aDest,
|
|
|
|
const Color &aColor,
|
|
|
|
const Point &aOffset,
|
|
|
|
Float aSigma,
|
|
|
|
CompositionOp aOperator);
|
|
|
|
virtual void ClearRect(const Rect &aRect);
|
|
|
|
virtual void CopySurface(SourceSurface *aSurface,
|
|
|
|
const IntRect &aSourceRect,
|
|
|
|
const IntPoint &aDestination);
|
|
|
|
virtual void FillRect(const Rect &aRect,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
|
|
|
virtual void StrokeRect(const Rect &aRect,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
|
|
|
virtual void StrokeLine(const Point &aStart,
|
|
|
|
const Point &aEnd,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
|
|
|
virtual void Stroke(const Path *aPath,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const StrokeOptions &aStrokeOptions = StrokeOptions(),
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
|
|
|
virtual void Fill(const Path *aPath,
|
|
|
|
const Pattern &aPattern,
|
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
|
|
|
virtual void FillGlyphs(ScaledFont *aFont,
|
|
|
|
const GlyphBuffer &aBuffer,
|
|
|
|
const Pattern &aPattern,
|
2012-03-19 19:20:17 +00:00
|
|
|
const DrawOptions &aOptions = DrawOptions(),
|
2012-08-14 18:06:12 +00:00
|
|
|
const GlyphRenderingOptions *aRenderingOptions = nullptr);
|
2011-12-28 05:56:11 +00:00
|
|
|
virtual void Mask(const Pattern &aSource,
|
|
|
|
const Pattern &aMask,
|
2012-01-19 04:48:33 +00:00
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
2013-06-27 20:20:30 +00:00
|
|
|
virtual void MaskSurface(const Pattern &aSource,
|
|
|
|
SourceSurface *aMask,
|
|
|
|
Point aOffset,
|
2013-11-25 14:20:56 +00:00
|
|
|
const DrawOptions &aOptions = DrawOptions());
|
2011-11-02 19:55:03 +00:00
|
|
|
virtual void PushClip(const Path *aPath);
|
2012-01-19 04:48:33 +00:00
|
|
|
virtual void PushClipRect(const Rect& aRect);
|
2011-11-02 19:55:03 +00:00
|
|
|
virtual void PopClip();
|
|
|
|
virtual TemporaryRef<SourceSurface> CreateSourceSurfaceFromData(unsigned char *aData,
|
|
|
|
const IntSize &aSize,
|
|
|
|
int32_t aStride,
|
|
|
|
SurfaceFormat aFormat) const;
|
|
|
|
virtual TemporaryRef<SourceSurface> OptimizeSourceSurface(SourceSurface *aSurface) const;
|
|
|
|
virtual TemporaryRef<SourceSurface>
|
|
|
|
CreateSourceSurfaceFromNativeSurface(const NativeSurface &aSurface) const;
|
|
|
|
virtual TemporaryRef<DrawTarget>
|
|
|
|
CreateSimilarDrawTarget(const IntSize &aSize, SurfaceFormat aFormat) const;
|
2014-01-10 19:06:17 +00:00
|
|
|
virtual TemporaryRef<PathBuilder> CreatePathBuilder(FillRule aFillRule = FillRule::FILL_WINDING) const;
|
|
|
|
virtual TemporaryRef<GradientStops> CreateGradientStops(GradientStop *aStops, uint32_t aNumStops, ExtendMode aExtendMode = ExtendMode::CLAMP) const;
|
2013-11-27 11:25:28 +00:00
|
|
|
virtual TemporaryRef<FilterNode> CreateFilter(FilterType aType);
|
2011-11-02 19:55:03 +00:00
|
|
|
virtual void SetTransform(const Matrix &aTransform);
|
2014-03-05 21:49:37 +00:00
|
|
|
virtual void *GetNativeSurface(NativeSurfaceType aType);
|
2011-11-02 19:55:03 +00:00
|
|
|
|
|
|
|
bool Init(const IntSize &aSize, SurfaceFormat aFormat);
|
2012-01-19 04:48:33 +00:00
|
|
|
void Init(unsigned char* aData, const IntSize &aSize, int32_t aStride, SurfaceFormat aFormat);
|
2013-06-17 02:07:18 +00:00
|
|
|
|
2013-03-13 23:29:47 +00:00
|
|
|
#ifdef USE_SKIA_GPU
|
2014-03-26 18:21:50 +00:00
|
|
|
bool InitWithGrContext(GrContext* aGrContext,
|
2014-03-05 21:49:37 +00:00
|
|
|
const IntSize &aSize,
|
|
|
|
SurfaceFormat aFormat) MOZ_OVERRIDE;
|
2013-03-13 23:29:47 +00:00
|
|
|
#endif
|
2013-06-17 02:07:18 +00:00
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
operator std::string() const {
|
|
|
|
std::stringstream stream;
|
|
|
|
stream << "DrawTargetSkia(" << this << ")";
|
|
|
|
return stream.str();
|
|
|
|
}
|
2013-05-29 16:49:40 +00:00
|
|
|
|
2011-11-02 19:55:03 +00:00
|
|
|
private:
|
2011-11-02 19:55:03 +00:00
|
|
|
friend class SourceSurfaceSkia;
|
2013-08-02 01:12:16 +00:00
|
|
|
void SnapshotDestroyed();
|
2011-11-02 19:55:03 +00:00
|
|
|
|
|
|
|
void MarkChanged();
|
2011-11-02 19:55:03 +00:00
|
|
|
|
2013-11-25 14:22:33 +00:00
|
|
|
SkRect SkRectCoveringWholeSurface() const;
|
|
|
|
|
2014-05-23 05:09:34 +00:00
|
|
|
bool UsingSkiaGPU() const;
|
|
|
|
|
2013-05-29 18:04:25 +00:00
|
|
|
#ifdef USE_SKIA_GPU
|
2014-08-06 16:01:44 +00:00
|
|
|
RefPtrSkia<GrContext> mGrContext;
|
2014-03-05 21:49:37 +00:00
|
|
|
uint32_t mTexture;
|
2013-05-29 18:04:25 +00:00
|
|
|
#endif
|
2013-06-17 17:45:04 +00:00
|
|
|
|
|
|
|
IntSize mSize;
|
2014-08-06 16:01:44 +00:00
|
|
|
RefPtrSkia<SkCanvas> mCanvas;
|
2013-08-02 01:12:16 +00:00
|
|
|
SourceSurfaceSkia* mSnapshot;
|
2011-11-02 19:55:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2014-04-16 16:17:22 +00:00
|
|
|
|
|
|
|
#endif // _MOZILLA_GFX_SOURCESURFACESKIA_H
|