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"
|
2010-03-02 02:09:35 +03:00
|
|
|
#include "nsAutoRef.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2010-03-01 10:56:18 +03:00
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
#include "mozilla/layers/ShadowLayers.h"
|
|
|
|
|
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;
|
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
|
|
|
*/
|
2010-07-16 01:08:04 +04:00
|
|
|
enum BufferMode {
|
|
|
|
BUFFER_NONE,
|
|
|
|
BUFFER_BUFFERED
|
|
|
|
};
|
|
|
|
void SetDefaultTarget(gfxContext* aContext, BufferMode aDoubleBuffering);
|
2010-07-16 01:08:10 +04:00
|
|
|
gfxContext* GetDefaultTarget() { return mDefaultTarget; }
|
|
|
|
|
|
|
|
nsIWidget* GetRetainerWidget() { return mWidget; }
|
|
|
|
void ClearRetainerWidget() { mWidget = nsnull; }
|
2010-03-01 10:56:18 +03:00
|
|
|
|
|
|
|
virtual void BeginTransaction();
|
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2011-01-19 11:27:54 +03:00
|
|
|
virtual bool EndEmptyTransaction();
|
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-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()
|
2011-02-17 01:43:30 +03:00
|
|
|
{ return nsnull; }
|
2010-10-14 02:55:45 +04:00
|
|
|
virtual already_AddRefed<ShadowContainerLayer> CreateShadowContainerLayer()
|
2011-02-17 01:43:30 +03:00
|
|
|
{ return nsnull; }
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowImageLayer> CreateShadowImageLayer()
|
2011-02-17 01:43:30 +03:00
|
|
|
{ return nsnull; }
|
2010-10-14 02:55:45 +04:00
|
|
|
virtual already_AddRefed<ShadowColorLayer> CreateShadowColorLayer()
|
2011-02-17 01:43:30 +03:00
|
|
|
{ return nsnull; }
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual already_AddRefed<ShadowCanvasLayer> CreateShadowCanvasLayer()
|
2011-02-17 01:43:30 +03:00
|
|
|
{ return nsnull; }
|
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; }
|
|
|
|
bool InTransaction() { return mPhase != PHASE_NONE; }
|
2010-03-01 10:56:18 +03:00
|
|
|
#endif
|
|
|
|
gfxContext* GetTarget() { return mTarget; }
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsRetained() { return mWidget != nsnull; }
|
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; }
|
2011-05-18 15:24:52 +04:00
|
|
|
virtual bool HasShadowManagerInternal() const { return false; }
|
|
|
|
bool HasShadowManager() const { return HasShadowManagerInternal(); }
|
2012-05-23 03:15:16 +04:00
|
|
|
virtual PRInt32 GetMaxTextureSize() const { return PR_INT32_MAX; }
|
2011-02-04 21:11:24 +03:00
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
protected:
|
|
|
|
#ifdef DEBUG
|
|
|
|
enum TransactionPhase {
|
|
|
|
PHASE_NONE, PHASE_CONSTRUCTION, PHASE_DRAWING, PHASE_FORWARD
|
|
|
|
};
|
|
|
|
TransactionPhase mPhase;
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
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-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
|
|
|
|
2010-07-16 01:08:04 +04:00
|
|
|
BufferMode mDoubleBuffering;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mUsingDefaultTarget;
|
|
|
|
bool mCachedSurfaceInUse;
|
2010-12-27 09:12:17 +03:00
|
|
|
bool mTransactionIncomplete;
|
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-05-23 03:15:16 +04:00
|
|
|
virtual PRInt32 GetMaxTextureSize() const;
|
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2011-01-19 11:27:54 +03:00
|
|
|
virtual bool EndEmptyTransaction();
|
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();
|
|
|
|
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();
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
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();
|
|
|
|
|
2010-07-22 01:17:33 +04:00
|
|
|
LayerRefArray mKeepAlive;
|
|
|
|
};
|
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");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetBackBufferYUVImage(gfxSharedImageSurface* aYBuffer,
|
|
|
|
gfxSharedImageSurface* aUBuffer,
|
|
|
|
gfxSharedImageSurface* aVBuffer)
|
|
|
|
{
|
|
|
|
NS_RUNTIMEABORT("if this default impl is called, |aBuffer| leaks");
|
|
|
|
}
|
|
|
|
|
|
|
|
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-03-01 10:56:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_BASICLAYERS_H */
|