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
|
|
|
|
#include "mozilla/RefPtr.h" // for RefPtr
|
|
|
|
#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 {
|
2014-07-11 15:10:49 -07:00
|
|
|
namespace gl{
|
2014-03-05 13:49:37 -08:00
|
|
|
class SurfaceStream;
|
|
|
|
}
|
|
|
|
|
2013-04-30 22:03:25 -07:00
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
class CanvasClientWebGL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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:
|
2013-04-30 22:03:25 -07:00
|
|
|
virtual void Initialize(const Data& aData);
|
2013-12-04 14:46:20 -08:00
|
|
|
|
|
|
|
virtual bool IsDataValid(const Data& aData);
|
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
|
|
|
|
2014-02-12 07:07:46 -08:00
|
|
|
RefPtr<gfx::SourceSurface> mSurface;
|
2014-07-11 15:10:49 -07:00
|
|
|
nsRefPtr<gl::GLContext> mGLContext;
|
2013-04-30 22:03:25 -07:00
|
|
|
mozilla::RefPtr<mozilla::gfx::DrawTarget> mDrawTarget;
|
2013-06-06 07:58:45 -07:00
|
|
|
|
2014-07-11 15:10:49 -07:00
|
|
|
RefPtr<gl::SurfaceStream> mStream;
|
2014-03-05 13:49:37 -08:00
|
|
|
|
2013-04-30 22:03:25 -07:00
|
|
|
uint32_t mCanvasFramebuffer;
|
|
|
|
|
2014-06-18 17:04:06 -07:00
|
|
|
bool mIsAlphaPremultiplied;
|
2013-04-30 22:03:25 -07:00
|
|
|
bool mNeedsYFlip;
|
|
|
|
|
2014-02-12 07:07:46 -08: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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|