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