2013-05-01 09:03:25 +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 GFX_COPYABLECANVASLAYER_H
|
|
|
|
#define GFX_COPYABLECANVASLAYER_H
|
|
|
|
|
2013-08-12 03:17:23 +04:00
|
|
|
#include <stdint.h> // for uint32_t
|
2013-09-07 06:11:41 +04:00
|
|
|
#include "GLContextTypes.h" // for GLContext
|
2013-08-12 03:17:23 +04:00
|
|
|
#include "Layers.h" // for CanvasLayer, etc
|
|
|
|
#include "gfxContext.h" // for gfxContext, etc
|
2013-09-25 00:45:14 +04:00
|
|
|
#include "gfxTypes.h"
|
2013-08-12 03:17:23 +04:00
|
|
|
#include "gfxPlatform.h" // for gfxImageFormat
|
|
|
|
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
|
|
|
|
#include "mozilla/Preferences.h" // for Preferences
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h" // for RefPtr
|
2013-08-12 03:17:23 +04:00
|
|
|
#include "mozilla/gfx/2D.h" // for DrawTarget
|
|
|
|
#include "mozilla/mozalloc.h" // for operator delete, etc
|
2014-02-27 01:36:35 +04:00
|
|
|
#include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, etc
|
2013-05-01 09:03:25 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-04-22 09:29:24 +03:00
|
|
|
namespace gl {
|
|
|
|
class SharedSurface;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gl
|
2015-04-22 09:29:24 +03:00
|
|
|
|
|
|
|
namespace layers {
|
2013-05-01 09:03:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A shared CanvasLayer implementation that supports copying
|
|
|
|
* its contents into a gfxASurface using UpdateSurface.
|
|
|
|
*/
|
|
|
|
class CopyableCanvasLayer : public CanvasLayer
|
|
|
|
{
|
|
|
|
public:
|
2013-09-07 06:11:41 +04:00
|
|
|
CopyableCanvasLayer(LayerManager* aLayerManager, void *aImplData);
|
2014-07-15 19:37:45 +04:00
|
|
|
|
|
|
|
protected:
|
2013-09-07 06:11:41 +04:00
|
|
|
virtual ~CopyableCanvasLayer();
|
2013-05-01 09:03:25 +04:00
|
|
|
|
2014-07-15 19:37:45 +04:00
|
|
|
public:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void Initialize(const Data& aData) override;
|
2013-12-05 02:46:20 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsDataValid(const Data& aData) override;
|
2013-05-01 09:03:25 +04:00
|
|
|
|
2014-05-15 02:31:23 +04:00
|
|
|
bool IsGLLayer() { return !!mGLContext; }
|
|
|
|
|
2013-05-01 09:03:25 +04:00
|
|
|
protected:
|
2014-04-01 11:51:35 +04:00
|
|
|
void UpdateTarget(gfx::DrawTarget* aDestTarget = nullptr);
|
2013-05-01 09:03:25 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::SourceSurface> mSurface;
|
|
|
|
RefPtr<gl::GLContext> mGLContext;
|
2014-10-08 08:15:39 +04:00
|
|
|
GLuint mCanvasFrontbufferTexID;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<PersistentBufferProvider> mBufferProvider;
|
2013-06-06 18:58:45 +04:00
|
|
|
|
2014-10-08 08:15:39 +04:00
|
|
|
UniquePtr<gl::SharedSurface> mGLFrontbuffer;
|
2013-05-01 09:03:25 +04:00
|
|
|
|
2014-06-19 04:04:06 +04:00
|
|
|
bool mIsAlphaPremultiplied;
|
2014-11-18 04:02:19 +03:00
|
|
|
gl::OriginPos mOriginPos;
|
2016-07-04 23:11:07 +03:00
|
|
|
bool mIsMirror;
|
2013-05-01 09:03:25 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<gfx::DataSourceSurface> mCachedTempSurface;
|
2013-05-01 09:03:25 +04:00
|
|
|
|
2014-02-12 19:07:46 +04:00
|
|
|
gfx::DataSourceSurface* GetTempSurface(const gfx::IntSize& aSize,
|
|
|
|
const gfx::SurfaceFormat aFormat);
|
2013-09-25 00:45:14 +04:00
|
|
|
|
|
|
|
void DiscardTempSurface();
|
2013-05-01 09:03:25 +04:00
|
|
|
};
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|
2013-05-01 09:03:25 +04:00
|
|
|
|
|
|
|
#endif
|