2011-02-04 10:11:24 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 04:12:37 -07: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-02-28 23:56:18 -08:00
|
|
|
|
|
|
|
#ifndef GFX_BASICLAYERS_H
|
|
|
|
#define GFX_BASICLAYERS_H
|
|
|
|
|
|
|
|
#include "Layers.h"
|
|
|
|
|
|
|
|
#include "gfxContext.h"
|
2010-07-15 14:08:09 -07:00
|
|
|
#include "gfxCachedTempSurface.h"
|
2012-07-24 12:01:09 -07:00
|
|
|
#include "mozilla/layers/ShadowLayers.h"
|
|
|
|
#include "mozilla/WidgetUtils.h"
|
2010-03-01 15:09:35 -08:00
|
|
|
#include "nsAutoRef.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2010-07-15 14:08:10 -07:00
|
|
|
class nsIWidget;
|
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
class BasicShadowableLayer;
|
|
|
|
class ShadowThebesLayer;
|
2010-10-13 16:36:44 -07:00
|
|
|
class ShadowContainerLayer;
|
2010-07-21 14:17:33 -07:00
|
|
|
class ShadowImageLayer;
|
|
|
|
class ShadowCanvasLayer;
|
2010-10-13 16:36:44 -07:00
|
|
|
class ShadowColorLayer;
|
2011-02-16 14:43:30 -08:00
|
|
|
class ReadbackProcessor;
|
2010-07-21 14:17:33 -07:00
|
|
|
|
2010-02-28 23:56:18 -08: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-21 14:17:33 -07:00
|
|
|
class THEBES_API BasicLayerManager :
|
|
|
|
public ShadowLayerManager
|
|
|
|
{
|
2010-02-28 23:56:18 -08:00
|
|
|
public:
|
|
|
|
/**
|
2010-07-15 14:08:10 -07: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-02-28 23:56:18 -08:00
|
|
|
*/
|
2010-07-15 14:08:10 -07:00
|
|
|
BasicLayerManager();
|
2010-03-03 13:37:04 -08:00
|
|
|
/**
|
2010-07-15 14:08:10 -07: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-03 13:37:04 -08:00
|
|
|
*/
|
2010-07-15 14:08:10 -07:00
|
|
|
BasicLayerManager(nsIWidget* aWidget);
|
|
|
|
virtual ~BasicLayerManager();
|
2010-03-03 13:37:04 -08:00
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
/**
|
|
|
|
* Set the default target context that will be used when BeginTransaction
|
|
|
|
* is called. This can only be called outside a transaction.
|
2010-07-15 14:08:04 -07: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-02-28 23:56:18 -08:00
|
|
|
*/
|
2010-07-15 14:08:04 -07:00
|
|
|
enum BufferMode {
|
|
|
|
BUFFER_NONE,
|
|
|
|
BUFFER_BUFFERED
|
|
|
|
};
|
2012-07-24 12:01:09 -07:00
|
|
|
virtual void SetDefaultTarget(gfxContext* aContext, BufferMode aDoubleBuffering,
|
|
|
|
ScreenRotation aRotation);
|
2010-07-15 14:08:10 -07:00
|
|
|
gfxContext* GetDefaultTarget() { return mDefaultTarget; }
|
|
|
|
|
|
|
|
nsIWidget* GetRetainerWidget() { return mWidget; }
|
|
|
|
void ClearRetainerWidget() { mWidget = nsnull; }
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2012-07-17 10:03:51 -07:00
|
|
|
virtual bool IsWidgetLayerManager() { return mWidget != nsnull; }
|
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
virtual void BeginTransaction();
|
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2011-01-19 00:27:54 -08:00
|
|
|
virtual bool EndEmptyTransaction();
|
2010-12-13 16:14:07 -08:00
|
|
|
virtual void EndTransaction(DrawThebesLayerCallback aCallback,
|
2011-09-26 06:20:42 -07:00
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags = END_DEFAULT);
|
2012-07-22 20:00:36 -07:00
|
|
|
virtual bool AreComponentAlphaLayersEnabled() { return HasShadowManager(); }
|
|
|
|
|
2012-07-19 21:53:55 -07:00
|
|
|
void AbortTransaction();
|
2010-02-28 23:56:18 -08:00
|
|
|
|
|
|
|
virtual void SetRoot(Layer* aLayer);
|
|
|
|
|
|
|
|
virtual already_AddRefed<ThebesLayer> CreateThebesLayer();
|
|
|
|
virtual already_AddRefed<ContainerLayer> CreateContainerLayer();
|
2010-03-01 15:09:35 -08:00
|
|
|
virtual already_AddRefed<ImageLayer> CreateImageLayer();
|
2010-05-17 21:04:22 -07:00
|
|
|
virtual already_AddRefed<CanvasLayer> CreateCanvasLayer();
|
2010-05-12 17:56:11 -07:00
|
|
|
virtual already_AddRefed<ColorLayer> CreateColorLayer();
|
2011-02-16 14:43:30 -08:00
|
|
|
virtual already_AddRefed<ReadbackLayer> CreateReadbackLayer();
|
2012-01-31 18:18:30 -08:00
|
|
|
virtual ImageFactory *GetImageFactory();
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual already_AddRefed<ShadowThebesLayer> CreateShadowThebesLayer()
|
2011-02-16 14:43:30 -08:00
|
|
|
{ return nsnull; }
|
2010-10-13 15:55:45 -07:00
|
|
|
virtual already_AddRefed<ShadowContainerLayer> CreateShadowContainerLayer()
|
2011-02-16 14:43:30 -08:00
|
|
|
{ return nsnull; }
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual already_AddRefed<ShadowImageLayer> CreateShadowImageLayer()
|
2011-02-16 14:43:30 -08:00
|
|
|
{ return nsnull; }
|
2010-10-13 15:55:45 -07:00
|
|
|
virtual already_AddRefed<ShadowColorLayer> CreateShadowColorLayer()
|
2011-02-16 14:43:30 -08:00
|
|
|
{ return nsnull; }
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual already_AddRefed<ShadowCanvasLayer> CreateShadowCanvasLayer()
|
2011-02-16 14:43:30 -08:00
|
|
|
{ return nsnull; }
|
2012-07-17 16:59:45 -07:00
|
|
|
virtual already_AddRefed<ShadowRefLayer> CreateShadowRefLayer()
|
|
|
|
{ return nsnull; }
|
2010-07-21 14:17:33 -07:00
|
|
|
|
2010-03-30 11:58:37 -07:00
|
|
|
virtual LayersBackend GetBackendType() { return LAYERS_BASIC; }
|
2010-09-03 11:01:05 -07:00
|
|
|
virtual void GetBackendName(nsAString& name) { name.AssignLiteral("Basic"); }
|
2010-02-28 23:56:18 -08:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-09-28 23:19:26 -07:00
|
|
|
bool InConstruction() { return mPhase == PHASE_CONSTRUCTION; }
|
|
|
|
bool InDrawing() { return mPhase == PHASE_DRAWING; }
|
|
|
|
bool InForward() { return mPhase == PHASE_FORWARD; }
|
2012-07-03 17:31:54 -07:00
|
|
|
#endif
|
2012-07-17 10:03:51 -07:00
|
|
|
bool InTransaction() { return mPhase != PHASE_NONE; }
|
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
gfxContext* GetTarget() { return mTarget; }
|
2012-07-17 10:03:51 -07:00
|
|
|
void SetTarget(gfxContext* aTarget) { mUsingDefaultTarget = false; mTarget = aTarget; }
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsRetained() { return mWidget != nsnull; }
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2010-07-21 11:06:33 -07:00
|
|
|
#ifdef MOZ_LAYERS_HAVE_LOG
|
|
|
|
virtual const char* Name() const { return "Basic"; }
|
|
|
|
#endif // MOZ_LAYERS_HAVE_LOG
|
2010-07-21 14:17:33 -07:00
|
|
|
|
2010-08-19 20:40:49 -07:00
|
|
|
// Clear the cached contents of this layer.
|
|
|
|
void ClearCachedResources();
|
|
|
|
|
2010-12-26 22:12:17 -08:00
|
|
|
void SetTransactionIncomplete() { mTransactionIncomplete = true; }
|
2012-01-04 14:16:37 -08:00
|
|
|
bool IsTransactionIncomplete() { return mTransactionIncomplete; }
|
2010-12-26 22:12:17 -08:00
|
|
|
|
2011-05-29 20:48:29 -07:00
|
|
|
already_AddRefed<gfxContext> PushGroupForLayer(gfxContext* aContext, Layer* aLayer,
|
|
|
|
const nsIntRegion& aRegion,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool* aNeedsClipToVisibleRegion);
|
2011-05-29 20:48:29 -07:00
|
|
|
already_AddRefed<gfxContext> PushGroupWithCachedSurface(gfxContext *aTarget,
|
|
|
|
gfxASurface::gfxContentType aContent);
|
|
|
|
void PopGroupToSourceWithCachedSurface(gfxContext *aTarget, gfxContext *aPushed);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool IsCompositingCheap() { return false; }
|
2012-07-03 17:25:57 -07:00
|
|
|
virtual bool HasShadowManagerInternal() const { return false; }
|
|
|
|
bool HasShadowManager() const { return HasShadowManagerInternal(); }
|
2012-05-22 16:15:16 -07:00
|
|
|
virtual PRInt32 GetMaxTextureSize() const { return PR_INT32_MAX; }
|
2011-02-04 10:11:24 -08:00
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
protected:
|
|
|
|
enum TransactionPhase {
|
|
|
|
PHASE_NONE, PHASE_CONSTRUCTION, PHASE_DRAWING, PHASE_FORWARD
|
|
|
|
};
|
|
|
|
TransactionPhase mPhase;
|
|
|
|
|
2010-05-20 20:20:48 -07:00
|
|
|
// Paints aLayer to mTarget.
|
2011-05-29 20:48:29 -07:00
|
|
|
void PaintLayer(gfxContext* aTarget,
|
|
|
|
Layer* aLayer,
|
2010-05-20 20:20:48 -07:00
|
|
|
DrawThebesLayerCallback aCallback,
|
2011-02-16 14:43:30 -08:00
|
|
|
void* aCallbackData,
|
|
|
|
ReadbackProcessor* aReadback);
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2010-08-19 20:40:49 -07:00
|
|
|
// Clear the contents of a layer
|
|
|
|
void ClearLayer(Layer* aLayer);
|
|
|
|
|
2010-12-26 22:12:17 -08:00
|
|
|
bool EndTransactionInternal(DrawThebesLayerCallback aCallback,
|
2011-09-26 06:20:42 -07:00
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags = END_DEFAULT);
|
2010-12-26 22:12:17 -08:00
|
|
|
|
2012-07-17 10:03:51 -07:00
|
|
|
void FlashWidgetUpdateArea(gfxContext* aContext);
|
|
|
|
|
2010-07-15 14:08:10 -07:00
|
|
|
// Widget whose surface should be used as the basis for ThebesLayer
|
|
|
|
// buffers.
|
|
|
|
nsIWidget* mWidget;
|
2010-02-28 23:56:18 -08:00
|
|
|
// The default context for BeginTransaction.
|
|
|
|
nsRefPtr<gfxContext> mDefaultTarget;
|
2010-05-20 20:20:48 -07:00
|
|
|
// The context to draw into.
|
2010-02-28 23:56:18 -08:00
|
|
|
nsRefPtr<gfxContext> mTarget;
|
2012-06-01 05:42:36 -07:00
|
|
|
// A context we want our shadow to draw into.
|
|
|
|
nsRefPtr<gfxContext> mShadowTarget;
|
2012-01-31 18:18:30 -08:00
|
|
|
// Image factory we use.
|
|
|
|
nsRefPtr<ImageFactory> mFactory;
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2010-07-15 14:08:04 -07:00
|
|
|
// Cached surface for double buffering
|
2010-07-15 14:08:09 -07:00
|
|
|
gfxCachedTempSurface mCachedSurface;
|
2010-07-15 14:08:04 -07:00
|
|
|
|
2010-07-15 14:08:04 -07:00
|
|
|
BufferMode mDoubleBuffering;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mUsingDefaultTarget;
|
|
|
|
bool mCachedSurfaceInUse;
|
2010-12-26 22:12:17 -08:00
|
|
|
bool mTransactionIncomplete;
|
2010-02-28 23:56:18 -08:00
|
|
|
};
|
2010-07-21 14:17:33 -07:00
|
|
|
|
|
|
|
|
|
|
|
class BasicShadowLayerManager : public BasicLayerManager,
|
|
|
|
public ShadowLayerForwarder
|
|
|
|
{
|
|
|
|
typedef nsTArray<nsRefPtr<Layer> > LayerRefArray;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BasicShadowLayerManager(nsIWidget* aWidget);
|
|
|
|
virtual ~BasicShadowLayerManager();
|
|
|
|
|
2011-08-09 12:38:26 -07:00
|
|
|
virtual ShadowLayerForwarder* AsShadowForwarder()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
virtual ShadowLayerManager* AsShadowManager()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2012-05-22 16:15:16 -07:00
|
|
|
virtual PRInt32 GetMaxTextureSize() const;
|
|
|
|
|
2012-07-24 12:01:09 -07:00
|
|
|
virtual void SetDefaultTarget(gfxContext* aContext, BufferMode aDoubleBuffering,
|
|
|
|
ScreenRotation aRotation) MOZ_OVERRIDE;
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2011-01-19 00:27:54 -08:00
|
|
|
virtual bool EndEmptyTransaction();
|
2010-12-13 16:14:07 -08:00
|
|
|
virtual void EndTransaction(DrawThebesLayerCallback aCallback,
|
2011-09-26 06:20:42 -07:00
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags = END_DEFAULT);
|
2010-07-21 14:17:33 -07: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-17 16:59:45 -07:00
|
|
|
virtual already_AddRefed<RefLayer> CreateRefLayer();
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual already_AddRefed<ShadowThebesLayer> CreateShadowThebesLayer();
|
2010-10-13 15:55:45 -07:00
|
|
|
virtual already_AddRefed<ShadowContainerLayer> CreateShadowContainerLayer();
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual already_AddRefed<ShadowImageLayer> CreateShadowImageLayer();
|
2010-10-13 15:55:45 -07:00
|
|
|
virtual already_AddRefed<ShadowColorLayer> CreateShadowColorLayer();
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual already_AddRefed<ShadowCanvasLayer> CreateShadowCanvasLayer();
|
2012-07-17 16:59:45 -07:00
|
|
|
virtual already_AddRefed<ShadowRefLayer> CreateShadowRefLayer();
|
2010-07-21 14:17:33 -07:00
|
|
|
|
|
|
|
ShadowableLayer* Hold(Layer* aLayer);
|
|
|
|
|
2011-05-18 04:24:52 -07:00
|
|
|
bool HasShadowManager() const { return ShadowLayerForwarder::HasShadowManager(); }
|
2010-08-20 16:24:41 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool IsCompositingCheap();
|
2011-05-18 04:24:52 -07:00
|
|
|
virtual bool HasShadowManagerInternal() const { return HasShadowManager(); }
|
2011-02-04 10:11:24 -08:00
|
|
|
|
2012-03-12 08:50:15 -07:00
|
|
|
virtual void SetIsFirstPaint() MOZ_OVERRIDE;
|
|
|
|
|
2012-07-06 10:58:01 -07:00
|
|
|
void SetRepeatTransaction() { mRepeatTransaction = true; }
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
private:
|
2010-12-26 22:12:17 -08:00
|
|
|
/**
|
|
|
|
* Forward transaction results to the parent context.
|
|
|
|
*/
|
|
|
|
void ForwardTransaction();
|
|
|
|
|
2012-07-24 12:01:09 -07: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 10:58:01 -07:00
|
|
|
// Used to repeat the transaction right away (to avoid rebuilding
|
|
|
|
// a display list) to support progressive drawing.
|
|
|
|
bool mRepeatTransaction;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2012-04-16 15:23:03 -07: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 05:51:57 -07:00
|
|
|
virtual void SetBackBufferYUVImage(const SurfaceDescriptor& aYBuffer,
|
|
|
|
const SurfaceDescriptor& aUBuffer,
|
|
|
|
const SurfaceDescriptor& aVBuffer)
|
2012-04-16 15:23:03 -07:00
|
|
|
{
|
2012-07-12 05:51:57 -07:00
|
|
|
NS_RUNTIMEABORT("if this default impl is called, the buffers leak");
|
2012-04-16 15:23:03 -07: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).
|
|
|
|
mShadow = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual BasicShadowableThebesLayer* AsThebes() { return nsnull; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_BASICLAYERS_H */
|