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
|
|
|
|
|
2013-08-11 16:17:23 -07:00
|
|
|
#include <stdint.h> // for INT32_MAX, int32_t
|
|
|
|
#include "Layers.h" // for Layer (ptr only), etc
|
2013-09-24 13:45:14 -07:00
|
|
|
#include "gfxTypes.h"
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "gfxContext.h" // for gfxContext
|
|
|
|
#include "mozilla/Attributes.h" // for MOZ_OVERRIDE
|
|
|
|
#include "mozilla/WidgetUtils.h" // for ScreenRotation
|
|
|
|
#include "mozilla/layers/LayersTypes.h" // for BufferMode, LayersBackend, etc
|
|
|
|
#include "nsAString.h"
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "nsISupportsImpl.h" // for gfxContext::AddRef, etc
|
|
|
|
#include "nsRegion.h" // for nsIntRegion
|
|
|
|
#include "nscore.h" // for nsAString, etc
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2013-08-11 16:17:23 -07:00
|
|
|
class gfxPattern;
|
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;
|
2012-08-19 12:33:25 -07:00
|
|
|
class ImageFactory;
|
2013-08-11 16:17:23 -07:00
|
|
|
class ImageLayer;
|
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;
|
2013-08-11 16:17:23 -07:00
|
|
|
class ReadbackLayer;
|
|
|
|
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).
|
|
|
|
*/
|
2013-05-29 14:59:24 -07:00
|
|
|
class 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:
|
2014-06-19 11:22:17 -07:00
|
|
|
enum BasicLayerManagerType {
|
|
|
|
BLM_WIDGET,
|
|
|
|
BLM_OFFSCREEN,
|
|
|
|
BLM_INACTIVE
|
|
|
|
};
|
2010-02-28 23:56:18 -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 not
|
|
|
|
* be retained.
|
2010-02-28 23:56:18 -08:00
|
|
|
*/
|
2014-06-19 11:22:17 -07:00
|
|
|
BasicLayerManager(BasicLayerManagerType aType);
|
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);
|
2014-07-15 08:37:45 -07:00
|
|
|
|
|
|
|
protected:
|
2010-07-15 14:08:10 -07:00
|
|
|
virtual ~BasicLayerManager();
|
2010-03-03 13:37:04 -08:00
|
|
|
|
2014-07-15 08:37:45 -07:00
|
|
|
public:
|
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; }
|
2014-06-19 11:22:17 -07:00
|
|
|
virtual bool IsInactiveLayerManager() { return mType == BLM_INACTIVE; }
|
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);
|
2013-10-14 20:23:21 -07:00
|
|
|
virtual bool AreComponentAlphaLayersEnabled() { return !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();
|
|
|
|
|
2014-01-23 10:26:41 -08:00
|
|
|
virtual LayersBackend GetBackendType() { return LayersBackend::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
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool InConstruction() { return mPhase == PHASE_CONSTRUCTION; }
|
2014-02-21 13:50:25 -08:00
|
|
|
#ifdef DEBUG
|
2011-09-28 23:19:26 -07:00
|
|
|
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
|
|
|
virtual const char* Name() const { return "Basic"; }
|
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
|
|
|
|
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; }
|
2011-02-04 10:11:24 -08:00
|
|
|
|
2014-05-09 02:48:32 -07:00
|
|
|
virtual bool SupportsMixBlendModes(EnumSet<gfx::CompositionOp>& aMixBlendModes) MOZ_OVERRIDE { return true; }
|
|
|
|
|
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,
|
2014-05-11 17:31:28 -07:00
|
|
|
void* aCallbackData);
|
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-01-31 18:18:30 -08:00
|
|
|
// Image factory we use.
|
|
|
|
nsRefPtr<ImageFactory> mFactory;
|
2010-02-28 23:56:18 -08:00
|
|
|
|
2012-09-24 21:15:18 -07:00
|
|
|
BufferMode mDoubleBuffering;
|
2014-06-19 11:22:17 -07:00
|
|
|
BasicLayerManagerType mType;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mUsingDefaultTarget;
|
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
|
|
|
|
2010-02-28 23:56:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_BASICLAYERS_H */
|