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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
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"
|
|
|
|
#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:
|
|
|
|
DrawTargetSkia();
|
|
|
|
virtual ~DrawTargetSkia();
|
|
|
|
|
|
|
|
virtual BackendType GetType() const { return BACKEND_SKIA; }
|
|
|
|
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());
|
|
|
|
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,
|
|
|
|
const DrawOptions &aOptions = DrawOptions()) { MOZ_ASSERT(0); };
|
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;
|
|
|
|
virtual TemporaryRef<PathBuilder> CreatePathBuilder(FillRule aFillRule = FILL_WINDING) const;
|
2011-12-28 05:56:11 +00:00
|
|
|
virtual TemporaryRef<GradientStops> CreateGradientStops(GradientStop *aStops, uint32_t aNumStops, ExtendMode aExtendMode = EXTEND_CLAMP) const;
|
2011-11-02 19:55:03 +00:00
|
|
|
virtual void SetTransform(const Matrix &aTransform);
|
|
|
|
|
|
|
|
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
|
2013-06-17 02:07:18 +00:00
|
|
|
virtual GenericRefCountedBase* GetGLContext() const MOZ_OVERRIDE { return mGLContext; }
|
|
|
|
void InitWithGLContextAndGrGLInterface(GenericRefCountedBase* aGLContext,
|
|
|
|
GrGLInterface* aGrGLInterface,
|
|
|
|
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;
|
|
|
|
void AppendSnapshot(SourceSurfaceSkia* aSnapshot);
|
|
|
|
void RemoveSnapshot(SourceSurfaceSkia* aSnapshot);
|
|
|
|
|
|
|
|
void MarkChanged();
|
2011-11-02 19:55:03 +00:00
|
|
|
|
2013-05-29 18:04:25 +00:00
|
|
|
#ifdef USE_SKIA_GPU
|
2013-06-17 17:45:04 +00:00
|
|
|
/*
|
|
|
|
* These members have inter-dependencies, but do not keep each other alive, so
|
|
|
|
* destruction order is very important here: mGrContext uses mGrGLInterface, and
|
|
|
|
* through it, uses mGLContext, so it is important that they be declared in the
|
|
|
|
* present order.
|
|
|
|
*/
|
2013-06-17 02:07:18 +00:00
|
|
|
RefPtr<GenericRefCountedBase> mGLContext;
|
2013-06-17 17:45:04 +00:00
|
|
|
SkRefPtr<GrGLInterface> mGrGLInterface;
|
|
|
|
SkRefPtr<GrContext> mGrContext;
|
2013-05-29 18:04:25 +00:00
|
|
|
#endif
|
2013-06-17 17:45:04 +00:00
|
|
|
|
|
|
|
IntSize mSize;
|
|
|
|
SkRefPtr<SkCanvas> mCanvas;
|
|
|
|
std::vector<SourceSurfaceSkia*> mSnapshots;
|
2011-11-02 19:55:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|