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