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;
|
2012-08-19 12:33:25 -07:00
|
|
|
class ImageFactory;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
class PaintLayerContext;
|
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 :
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
public LayerManager
|
2010-07-21 14:17:33 -07:00
|
|
|
{
|
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
|
|
|
*/
|
2012-08-14 18:10:40 -07:00
|
|
|
void SetDefaultTarget(gfxContext* aContext);
|
|
|
|
virtual void SetDefaultTargetConfiguration(BufferMode aDoubleBuffering, ScreenRotation aRotation);
|
2010-07-15 14:08:10 -07:00
|
|
|
gfxContext* GetDefaultTarget() { return mDefaultTarget; }
|
|
|
|
|
|
|
|
nsIWidget* GetRetainerWidget() { return mWidget; }
|
2012-07-30 07:20:58 -07:00
|
|
|
void ClearRetainerWidget() { mWidget = nullptr; }
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
virtual bool IsWidgetLayerManager() { return mWidget != nullptr; }
|
2012-07-17 10:03:51 -07:00
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
virtual void BeginTransaction();
|
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2012-08-13 03:10:10 -07:00
|
|
|
virtual bool EndEmptyTransaction(EndTransactionFlags aFlags = END_DEFAULT);
|
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-10-14 21:53:37 -07:00
|
|
|
virtual bool AreComponentAlphaLayersEnabled() { return HasShadowManager() || !IsWidgetLayerManager(); }
|
2012-07-22 20:00:36 -07:00
|
|
|
|
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-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; }
|
2012-07-30 07:20:58 -07:00
|
|
|
bool IsRetained() { return mWidget != nullptr; }
|
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
|
|
|
|
2012-11-07 19:51:55 -08:00
|
|
|
// Clear the cached contents of this layer tree.
|
|
|
|
virtual void ClearCachedResources(Layer* aSubtree = nullptr) MOZ_OVERRIDE;
|
2010-08-19 20:40:49 -07:00
|
|
|
|
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-09-27 23:57:33 -07:00
|
|
|
virtual int32_t GetMaxTextureSize() const { return INT32_MAX; }
|
2012-09-24 21:15:18 -07:00
|
|
|
bool CompositorMightResample() { return mCompositorMightResample; }
|
2012-10-25 09:27:08 -07:00
|
|
|
bool HasShadowTarget() { return !!mShadowTarget; }
|
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;
|
|
|
|
|
2012-09-10 15:31:38 -07: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.
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
void PaintSelfOrChildren(PaintLayerContext& aPaintContext, gfxContext* aGroupTarget);
|
2012-09-10 15:31:38 -07:00
|
|
|
|
|
|
|
// Paint the group onto the underlying target. This is used by PaintLayer to
|
|
|
|
// flush the group to the underlying target.
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
void FlushGroup(PaintLayerContext& aPaintContext, bool aNeedsClipToVisibleRegion);
|
2012-09-10 15:31:38 -07:00
|
|
|
|
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-10-04 00:05:24 -07: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 05:42:36 -07:00
|
|
|
nsRefPtr<gfxContext> mShadowTarget;
|
2012-10-04 00:05:24 -07:00
|
|
|
nsRefPtr<gfxContext> mDummyTarget;
|
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
|
|
|
|
2012-09-24 21:15:18 -07:00
|
|
|
BufferMode mDoubleBuffering;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mUsingDefaultTarget;
|
|
|
|
bool mCachedSurfaceInUse;
|
2012-09-24 21:15:18 -07:00
|
|
|
bool mTransactionIncomplete;
|
|
|
|
bool mCompositorMightResample;
|
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;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual int32_t GetMaxTextureSize() const;
|
2012-05-22 16:15:16 -07:00
|
|
|
|
2012-08-14 18:10:40 -07:00
|
|
|
virtual void SetDefaultTargetConfiguration(BufferMode aDoubleBuffering, ScreenRotation aRotation) MOZ_OVERRIDE;
|
2010-07-21 14:17:33 -07:00
|
|
|
virtual void BeginTransactionWithTarget(gfxContext* aTarget);
|
2012-08-13 03:10:10 -07:00
|
|
|
virtual bool EndEmptyTransaction(EndTransactionFlags aFlags = END_DEFAULT);
|
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
|
|
|
|
|
|
|
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-11-07 19:51:55 -08:00
|
|
|
// Drop cached resources and ask our shadow manager to do the same,
|
|
|
|
// if we have one.
|
|
|
|
virtual void ClearCachedResources(Layer* aSubtree = nullptr) MOZ_OVERRIDE;
|
|
|
|
|
2012-07-06 10:58:01 -07:00
|
|
|
void SetRepeatTransaction() { mRepeatTransaction = true; }
|
2012-11-21 14:34:19 -08:00
|
|
|
bool GetRepeatTransaction() { return mRepeatTransaction; }
|
2012-07-06 10:58:01 -07:00
|
|
|
|
2012-10-22 12:18:14 -07:00
|
|
|
bool IsRepeatTransaction() { return mIsRepeatTransaction; }
|
|
|
|
|
2012-10-04 11:45:16 -07:00
|
|
|
/**
|
2012-10-15 01:33:34 -07:00
|
|
|
* Called for each iteration of a progressive tile update. Fills
|
|
|
|
* aViewport, aScaleX and aScaleY with the current scale and viewport
|
|
|
|
* being used to composite the layers in this manager, to determine what area
|
2012-11-21 14:34:19 -08:00
|
|
|
* intersects with the target render rectangle. aDrawingCritical will be
|
|
|
|
* true if the current drawing operation is using the critical displayport.
|
2012-10-15 01:33:34 -07:00
|
|
|
* Returns true if the update should continue, or false if it should be
|
|
|
|
* cancelled.
|
|
|
|
* This is only called if gfxPlatform::UseProgressiveTilePainting() returns
|
|
|
|
* true.
|
2012-10-04 11:45:16 -07:00
|
|
|
*/
|
2012-10-15 01:33:34 -07:00
|
|
|
bool ProgressiveUpdateCallback(bool aHasPendingNewThebesContent,
|
|
|
|
gfx::Rect& aViewport,
|
|
|
|
float& aScaleX,
|
2012-11-21 14:34:19 -08:00
|
|
|
float& aScaleY,
|
|
|
|
bool aDrawingCritical);
|
2012-10-04 11:45:16 -07:00
|
|
|
|
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;
|
2012-10-22 12:18:14 -07:00
|
|
|
bool mIsRepeatTransaction;
|
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 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 07:20:58 -07:00
|
|
|
mShadow = nullptr;
|
2012-04-16 15:23:03 -07:00
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
virtual BasicShadowableThebesLayer* AsThebes() { return nullptr; }
|
2012-04-16 15:23:03 -07:00
|
|
|
};
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
void
|
|
|
|
PaintContext(gfxPattern* aPattern,
|
|
|
|
const nsIntRegion& aVisible,
|
|
|
|
float aOpacity,
|
|
|
|
gfxContext* aContext,
|
|
|
|
Layer* aMaskLayer);
|
2012-04-16 15:23:03 -07:00
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_BASICLAYERS_H */
|