2011-02-04 21:11:24 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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/. */
|
2010-03-01 10:56:18 +03:00
|
|
|
|
|
|
|
#ifndef GFX_BASICLAYERS_H
|
|
|
|
#define GFX_BASICLAYERS_H
|
|
|
|
|
|
|
|
#include "Layers.h"
|
|
|
|
|
|
|
|
#include "gfxContext.h"
|
2010-07-16 01:08:09 +04:00
|
|
|
#include "gfxCachedTempSurface.h"
|
2012-07-24 23:01:09 +04:00
|
|
|
#include "mozilla/layers/ShadowLayers.h"
|
|
|
|
#include "mozilla/WidgetUtils.h"
|
2010-03-02 02:09:35 +03:00
|
|
|
#include "nsAutoRef.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2010-07-16 01:08:10 +04:00
|
|
|
class nsIWidget;
|
|
|
|
|
2010-03-01 10:56:18 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
class BasicShadowableLayer;
|
|
|
|
class ShadowThebesLayer;
|
2010-10-14 03:36:44 +04:00
|
|
|
class ShadowContainerLayer;
|
2010-07-22 01:17:33 +04:00
|
|
|
class ShadowImageLayer;
|
|
|
|
class ShadowCanvasLayer;
|
2010-10-14 03:36:44 +04:00
|
|
|
class ShadowColorLayer;
|
2011-02-17 01:43:30 +03:00
|
|
|
class ReadbackProcessor;
|
2012-08-19 23:33:25 +04:00
|
|
|
class ImageFactory;
|
2012-09-11 02:31:38 +04:00
|
|
|
class PaintContext;
|
2010-07-22 01:17:33 +04:00
|
|
|
|
2010-03-01 10:56:18 +03:00
|
|
|
/**
|
|
|
|
* This is a cairo/Thebes-only, main-thread-only implementation of layers.
|
|
|
|
*
|
|
|
|
* In each transaction, the client sets up the layer tree and then during
|
|
|
|
* the drawing phase, each ThebesLayer is painted directly into the target
|
|
|
|
* context (with appropriate clipping and Push/PopGroups performed
|
|
|
|
* between layers).
|
|
|
|
*/
|
2010-07-22 01:17:33 +04:00
|
|
|
class THEBES_API BasicLayerManager :
|
|
|
|
public ShadowLayerManager
|
|
|
|
{
|
2010-03-01 10:56:18 +03:00
|
|
|
public:
|
|
|
|
/**
|
2010-07-16 01:08:10 +04:00
|
|
|
* Construct a BasicLayerManager which will have no default
|
|
|
|
* target context. SetDefaultTarget or BeginTransactionWithTarget
|
|
|
|
* must be called for any rendering to happen. ThebesLayers will not
|
|
|
|
* be retained.
|
2010-03-01 10:56:18 +03:00
|
|
|
*/
|
2010-07-16 01:08:10 +04:00
|
|
|
BasicLayerManager();
|
2010-03-04 00:37:04 +03:00
|
|
|
/**
|
2010-07-16 01:08:10 +04:00
|
|
|
* Construct a BasicLayerManager which will have no default
|
|
|
|
* target context. SetDefaultTarget or BeginTransactionWithTarget
|
|
|
|
* must be called for any rendering to happen. ThebesLayers will be
|
|
|
|
* retained; that is, we will try to retain the visible contents of
|
|
|
|
* ThebesLayers as cairo surfaces. We create ThebesLayer buffers by
|
|
|
|
* creating similar surfaces to the default target context, or to
|
|
|
|
* aWidget's GetThebesSurface if there is no default target context, or
|
|
|
|
* to the passed-in context if there is no widget and no default
|
|
|
|
* target context.
|
|
|
|
*
|
|
|
|
* This does not keep a strong reference to the widget, so the caller
|
|
|
|
* must ensure that the widget outlives the layer manager or call
|
|
|
|
* ClearWidget before the widget dies.
|
2010-03-04 00:37:04 +03:00
|
|
|
*/
|
2010-07-16 01:08:10 +04:00
|
|
|
BasicLayerManager(nsIWidget* aWidget);
|
|
|
|
virtual ~BasicLayerManager();
|
2010-03-04 00:37:04 +03:00
|
|
|
|
2010-03-01 10:56:18 +03:00
|
|
|
/**
|
|
|
|
* Set the default target context that will be used when BeginTransaction
|
|
|
|
* is called. This can only be called outside a transaction.
|
2010-07-16 01:08:04 +04:00
|
|
|
*
|
|
|
|
* aDoubleBuffering can request double-buffering for drawing to the
|
|
|
|
* default target. When BUFFERED, the layer manager avoids blitting
|
|
|
|
* temporary results to aContext and then overpainting them with final
|
|
|
|
* results, by using a temporary buffer when necessary. In BUFFERED
|
|
|
|
* mode we always completely overwrite the contents of aContext's
|
|
|
|
* destination surface (within the clip region) using OPERATOR_SOURCE.
|
2010-03-01 10:56:18 +03:00
|
|
|
*/
|
2012-08-15 05:10:40 +04:00
|
|
|
void SetDefaultTarget(gfxContext* aContext);
|
|
|
|
virtual void SetDefaultTargetConfiguration(BufferMode aDoubleBuffering, ScreenRotation aRotation);
|
2010-07-16 01:08:10 +04:00
|
|
|
gfxContext* GetDefaultTarget() { return mDefaultTarget; }
|
|
|
|
|
|
|
|
nsIWidget* GetRetainerWidget() { return mWidget; }
|
2012-07-30 18:20:58 +04:00
|
|
|
void ClearRetainerWidget() { mWidget = nullptr; }
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
virtual bool IsWidgetLayerManager() { return mWidget != nullptr; }
|
2012-07-17 21:03:51 +04:00
|
|
|
|
2010-03-01 10:56:18 +03:00
|
|
|
virtual void BeginTransaction();
|
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2012-08-13 14:10:10 +04:00
|
|
|
virtual bool EndEmptyTransaction(EndTransactionFlags aFlags = END_DEFAULT);
|
2010-12-14 03:14:07 +03:00
|
|
|
virtual void EndTransaction(DrawThebesLayerCallback aCallback,
|
2011-09-26 17:20:42 +04:00
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags = END_DEFAULT);
|
2012-07-23 07:00:36 +04:00
|
|
|
virtual bool AreComponentAlphaLayersEnabled() { return HasShadowManager(); }
|
|
|
|
|
2012-07-20 08:53:55 +04:00
|
|
|
void AbortTransaction();
|
2010-03-01 10:56:18 +03:00
|
|
|
|
|
|
|
virtual void SetRoot(Layer* aLayer);
|
|
|
|
|
|
|
|
virtual already_AddRefed<ThebesLayer> CreateThebesLayer();
|
|
|
|
virtual already_AddRefed<ContainerLayer> CreateContainerLayer();
|
2010-03-02 02:09:35 +03:00
|
|
|
virtual already_AddRefed<ImageLayer> CreateImageLayer();
|
2010-05-18 08:04:22 +04:00
|
|
|
virtual already_AddRefed<CanvasLayer> CreateCanvasLayer();
|
2010-05-13 04:56:11 +04:00
|
|
|
virtual already_AddRefed<ColorLayer> CreateColorLayer();
|
2011-02-17 01:43:30 +03:00
|
|
|
virtual already_AddRefed<ReadbackLayer> CreateReadbackLayer();
|
2012-02-01 06:18:30 +04:00
|
|
|
virtual ImageFactory *GetImageFactory();
|
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowThebesLayer> CreateShadowThebesLayer()
|
2012-07-30 18:20:58 +04:00
|
|
|
{ return nullptr; }
|
2010-10-14 02:55:45 +04:00
|
|
|
virtual already_AddRefed<ShadowContainerLayer> CreateShadowContainerLayer()
|
2012-07-30 18:20:58 +04:00
|
|
|
{ return nullptr; }
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowImageLayer> CreateShadowImageLayer()
|
2012-07-30 18:20:58 +04:00
|
|
|
{ return nullptr; }
|
2010-10-14 02:55:45 +04:00
|
|
|
virtual already_AddRefed<ShadowColorLayer> CreateShadowColorLayer()
|
2012-07-30 18:20:58 +04:00
|
|
|
{ return nullptr; }
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowCanvasLayer> CreateShadowCanvasLayer()
|
2012-07-30 18:20:58 +04:00
|
|
|
{ return nullptr; }
|
2012-07-18 03:59:45 +04:00
|
|
|
virtual already_AddRefed<ShadowRefLayer> CreateShadowRefLayer()
|
2012-07-30 18:20:58 +04:00
|
|
|
{ return nullptr; }
|
2010-07-22 01:17:33 +04:00
|
|
|
|
2010-03-30 22:58:37 +04:00
|
|
|
virtual LayersBackend GetBackendType() { return LAYERS_BASIC; }
|
2010-09-03 22:01:05 +04:00
|
|
|
virtual void GetBackendName(nsAString& name) { name.AssignLiteral("Basic"); }
|
2010-03-01 10:56:18 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-09-29 10:19:26 +04:00
|
|
|
bool InConstruction() { return mPhase == PHASE_CONSTRUCTION; }
|
|
|
|
bool InDrawing() { return mPhase == PHASE_DRAWING; }
|
|
|
|
bool InForward() { return mPhase == PHASE_FORWARD; }
|
2012-07-04 04:31:54 +04:00
|
|
|
#endif
|
2012-07-17 21:03:51 +04:00
|
|
|
bool InTransaction() { return mPhase != PHASE_NONE; }
|
|
|
|
|
2010-03-01 10:56:18 +03:00
|
|
|
gfxContext* GetTarget() { return mTarget; }
|
2012-07-17 21:03:51 +04:00
|
|
|
void SetTarget(gfxContext* aTarget) { mUsingDefaultTarget = false; mTarget = aTarget; }
|
2012-07-30 18:20:58 +04:00
|
|
|
bool IsRetained() { return mWidget != nullptr; }
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2010-07-21 22:06:33 +04:00
|
|
|
#ifdef MOZ_LAYERS_HAVE_LOG
|
|
|
|
virtual const char* Name() const { return "Basic"; }
|
|
|
|
#endif // MOZ_LAYERS_HAVE_LOG
|
2010-07-22 01:17:33 +04:00
|
|
|
|
2010-08-20 07:40:49 +04:00
|
|
|
// Clear the cached contents of this layer.
|
|
|
|
void ClearCachedResources();
|
|
|
|
|
2010-12-27 09:12:17 +03:00
|
|
|
void SetTransactionIncomplete() { mTransactionIncomplete = true; }
|
2012-01-05 02:16:37 +04:00
|
|
|
bool IsTransactionIncomplete() { return mTransactionIncomplete; }
|
2010-12-27 09:12:17 +03:00
|
|
|
|
2011-05-30 07:48:29 +04:00
|
|
|
already_AddRefed<gfxContext> PushGroupForLayer(gfxContext* aContext, Layer* aLayer,
|
|
|
|
const nsIntRegion& aRegion,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool* aNeedsClipToVisibleRegion);
|
2011-05-30 07:48:29 +04:00
|
|
|
already_AddRefed<gfxContext> PushGroupWithCachedSurface(gfxContext *aTarget,
|
|
|
|
gfxASurface::gfxContentType aContent);
|
|
|
|
void PopGroupToSourceWithCachedSurface(gfxContext *aTarget, gfxContext *aPushed);
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsCompositingCheap() { return false; }
|
2012-09-28 10:57:33 +04:00
|
|
|
virtual int32_t GetMaxTextureSize() const { return INT32_MAX; }
|
2012-09-25 08:15:18 +04:00
|
|
|
bool CompositorMightResample() { return mCompositorMightResample; }
|
2011-02-04 21:11:24 +03:00
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
protected:
|
|
|
|
enum TransactionPhase {
|
|
|
|
PHASE_NONE, PHASE_CONSTRUCTION, PHASE_DRAWING, PHASE_FORWARD
|
|
|
|
};
|
|
|
|
TransactionPhase mPhase;
|
|
|
|
|
2012-09-11 02:31:38 +04:00
|
|
|
// This is the main body of the PaintLayer routine which will if it has
|
|
|
|
// children, recurse into PaintLayer() otherwise it will paint using the
|
|
|
|
// underlying Paint() method of the Layer. It will not do both.
|
|
|
|
void PaintSelfOrChildren(PaintContext& aPaintContext, gfxContext* aGroupTarget);
|
|
|
|
|
|
|
|
// Paint the group onto the underlying target. This is used by PaintLayer to
|
|
|
|
// flush the group to the underlying target.
|
|
|
|
void FlushGroup(PaintContext& aPaintContext, bool aNeedsClipToVisibleRegion);
|
|
|
|
|
2010-05-21 07:20:48 +04:00
|
|
|
// Paints aLayer to mTarget.
|
2011-05-30 07:48:29 +04:00
|
|
|
void PaintLayer(gfxContext* aTarget,
|
|
|
|
Layer* aLayer,
|
2010-05-21 07:20:48 +04:00
|
|
|
DrawThebesLayerCallback aCallback,
|
2011-02-17 01:43:30 +03:00
|
|
|
void* aCallbackData,
|
|
|
|
ReadbackProcessor* aReadback);
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2010-08-20 07:40:49 +04:00
|
|
|
// Clear the contents of a layer
|
|
|
|
void ClearLayer(Layer* aLayer);
|
|
|
|
|
2010-12-27 09:12:17 +03:00
|
|
|
bool EndTransactionInternal(DrawThebesLayerCallback aCallback,
|
2011-09-26 17:20:42 +04:00
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags = END_DEFAULT);
|
2010-12-27 09:12:17 +03:00
|
|
|
|
2012-07-17 21:03:51 +04:00
|
|
|
void FlashWidgetUpdateArea(gfxContext* aContext);
|
|
|
|
|
2010-07-16 01:08:10 +04:00
|
|
|
// Widget whose surface should be used as the basis for ThebesLayer
|
|
|
|
// buffers.
|
|
|
|
nsIWidget* mWidget;
|
2010-03-01 10:56:18 +03:00
|
|
|
// The default context for BeginTransaction.
|
|
|
|
nsRefPtr<gfxContext> mDefaultTarget;
|
2010-05-21 07:20:48 +04:00
|
|
|
// The context to draw into.
|
2010-03-01 10:56:18 +03:00
|
|
|
nsRefPtr<gfxContext> mTarget;
|
2012-10-04 11:05:24 +04:00
|
|
|
// When we're doing a transaction in order to draw to a non-default
|
|
|
|
// target, the layers transaction is only performed in order to send
|
|
|
|
// a PLayers:Update. We save the original non-default target to
|
|
|
|
// mShadowTarget, and then perform the transaction using
|
|
|
|
// mDummyTarget as the render target. After the transaction ends,
|
|
|
|
// we send a message to our remote side to capture the actual pixels
|
|
|
|
// being drawn to the default target, and then copy those pixels
|
|
|
|
// back to mShadowTarget.
|
2012-06-01 16:42:36 +04:00
|
|
|
nsRefPtr<gfxContext> mShadowTarget;
|
2012-10-04 11:05:24 +04:00
|
|
|
nsRefPtr<gfxContext> mDummyTarget;
|
2012-02-01 06:18:30 +04:00
|
|
|
// Image factory we use.
|
|
|
|
nsRefPtr<ImageFactory> mFactory;
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2010-07-16 01:08:04 +04:00
|
|
|
// Cached surface for double buffering
|
2010-07-16 01:08:09 +04:00
|
|
|
gfxCachedTempSurface mCachedSurface;
|
2010-07-16 01:08:04 +04:00
|
|
|
|
2012-09-25 08:15:18 +04:00
|
|
|
BufferMode mDoubleBuffering;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mUsingDefaultTarget;
|
|
|
|
bool mCachedSurfaceInUse;
|
2012-09-25 08:15:18 +04:00
|
|
|
bool mTransactionIncomplete;
|
|
|
|
bool mCompositorMightResample;
|
2010-03-01 10:56:18 +03:00
|
|
|
};
|
2010-07-22 01:17:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
class BasicShadowLayerManager : public BasicLayerManager,
|
|
|
|
public ShadowLayerForwarder
|
|
|
|
{
|
|
|
|
typedef nsTArray<nsRefPtr<Layer> > LayerRefArray;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BasicShadowLayerManager(nsIWidget* aWidget);
|
|
|
|
virtual ~BasicShadowLayerManager();
|
|
|
|
|
2011-08-09 23:38:26 +04:00
|
|
|
virtual ShadowLayerForwarder* AsShadowForwarder()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
virtual ShadowLayerManager* AsShadowManager()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual int32_t GetMaxTextureSize() const;
|
2012-05-23 03:15:16 +04:00
|
|
|
|
2012-08-15 05:10:40 +04:00
|
|
|
virtual void SetDefaultTargetConfiguration(BufferMode aDoubleBuffering, ScreenRotation aRotation) MOZ_OVERRIDE;
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2012-08-13 14:10:10 +04:00
|
|
|
virtual bool EndEmptyTransaction(EndTransactionFlags aFlags = END_DEFAULT);
|
2010-12-14 03:14:07 +03:00
|
|
|
virtual void EndTransaction(DrawThebesLayerCallback aCallback,
|
2011-09-26 17:20:42 +04:00
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags = END_DEFAULT);
|
2010-07-22 01:17:33 +04:00
|
|
|
|
|
|
|
virtual void SetRoot(Layer* aLayer);
|
|
|
|
|
|
|
|
virtual void Mutated(Layer* aLayer);
|
|
|
|
|
|
|
|
virtual already_AddRefed<ThebesLayer> CreateThebesLayer();
|
|
|
|
virtual already_AddRefed<ContainerLayer> CreateContainerLayer();
|
|
|
|
virtual already_AddRefed<ImageLayer> CreateImageLayer();
|
|
|
|
virtual already_AddRefed<CanvasLayer> CreateCanvasLayer();
|
|
|
|
virtual already_AddRefed<ColorLayer> CreateColorLayer();
|
2012-07-18 03:59:45 +04:00
|
|
|
virtual already_AddRefed<RefLayer> CreateRefLayer();
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowThebesLayer> CreateShadowThebesLayer();
|
2010-10-14 02:55:45 +04:00
|
|
|
virtual already_AddRefed<ShadowContainerLayer> CreateShadowContainerLayer();
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowImageLayer> CreateShadowImageLayer();
|
2010-10-14 02:55:45 +04:00
|
|
|
virtual already_AddRefed<ShadowColorLayer> CreateShadowColorLayer();
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowCanvasLayer> CreateShadowCanvasLayer();
|
2012-07-18 03:59:45 +04:00
|
|
|
virtual already_AddRefed<ShadowRefLayer> CreateShadowRefLayer();
|
2010-07-22 01:17:33 +04:00
|
|
|
|
|
|
|
ShadowableLayer* Hold(Layer* aLayer);
|
|
|
|
|
2011-05-18 15:24:52 +04:00
|
|
|
bool HasShadowManager() const { return ShadowLayerForwarder::HasShadowManager(); }
|
2010-08-21 03:24:41 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsCompositingCheap();
|
2011-05-18 15:24:52 +04:00
|
|
|
virtual bool HasShadowManagerInternal() const { return HasShadowManager(); }
|
2011-02-04 21:11:24 +03:00
|
|
|
|
2012-03-12 19:50:15 +04:00
|
|
|
virtual void SetIsFirstPaint() MOZ_OVERRIDE;
|
|
|
|
|
2012-07-06 21:58:01 +04:00
|
|
|
void SetRepeatTransaction() { mRepeatTransaction = true; }
|
|
|
|
|
2012-10-04 22:45:16 +04:00
|
|
|
/**
|
|
|
|
* Determines if a progressive update should be cancelled. This is only called
|
|
|
|
* if gfxPlatform::UseProgressiveTilePainting() returns true.
|
|
|
|
* aHasPendingNewThebesContent is true if there is a Thebes layer update
|
|
|
|
* that will cause its valid region to expand.
|
|
|
|
*/
|
|
|
|
bool ShouldAbortProgressiveUpdate(bool aHasPendingNewThebesContent);
|
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
private:
|
2010-12-27 09:12:17 +03:00
|
|
|
/**
|
|
|
|
* Forward transaction results to the parent context.
|
|
|
|
*/
|
|
|
|
void ForwardTransaction();
|
|
|
|
|
2012-07-24 23:01:09 +04:00
|
|
|
// The bounds of |mTarget| in device pixels.
|
|
|
|
nsIntRect mTargetBounds;
|
|
|
|
|
|
|
|
LayerRefArray mKeepAlive;
|
|
|
|
|
|
|
|
// Sometimes we draw to targets that don't natively support
|
|
|
|
// landscape/portrait orientation. When we need to implement that
|
|
|
|
// ourselves, |mTargetRotation| describes the induced transform we
|
|
|
|
// need to apply when compositing content to our target.
|
|
|
|
ScreenRotation mTargetRotation;
|
|
|
|
|
2012-07-06 21:58:01 +04:00
|
|
|
// Used to repeat the transaction right away (to avoid rebuilding
|
|
|
|
// a display list) to support progressive drawing.
|
|
|
|
bool mRepeatTransaction;
|
2010-07-22 01:17:33 +04:00
|
|
|
};
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2012-04-17 02:23:03 +04:00
|
|
|
class BasicShadowableThebesLayer;
|
|
|
|
class BasicShadowableLayer : public ShadowableLayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BasicShadowableLayer()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(BasicShadowableLayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
~BasicShadowableLayer();
|
|
|
|
|
|
|
|
void SetShadow(PLayerChild* aShadow)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(!mShadow, "can't have two shadows (yet)");
|
|
|
|
mShadow = aShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetBackBuffer(const SurfaceDescriptor& aBuffer)
|
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("if this default impl is called, |aBuffer| leaks");
|
|
|
|
}
|
|
|
|
|
2012-07-12 16:51:57 +04:00
|
|
|
virtual void SetBackBufferYUVImage(const SurfaceDescriptor& aYBuffer,
|
|
|
|
const SurfaceDescriptor& aUBuffer,
|
|
|
|
const SurfaceDescriptor& aVBuffer)
|
2012-04-17 02:23:03 +04:00
|
|
|
{
|
2012-07-12 16:51:57 +04:00
|
|
|
NS_RUNTIMEABORT("if this default impl is called, the buffers leak");
|
2012-04-17 02:23:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Disconnect()
|
|
|
|
{
|
|
|
|
// This is an "emergency Disconnect()", called when the compositing
|
|
|
|
// process has died. |mShadow| and our Shmem buffers are
|
|
|
|
// automatically managed by IPDL, so we don't need to explicitly
|
|
|
|
// free them here (it's hard to get that right on emergency
|
|
|
|
// shutdown anyway).
|
2012-07-30 18:20:58 +04:00
|
|
|
mShadow = nullptr;
|
2012-04-17 02:23:03 +04:00
|
|
|
}
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
virtual BasicShadowableThebesLayer* AsThebes() { return nullptr; }
|
2012-04-17 02:23:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-03-01 10:56:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_BASICLAYERS_H */
|