2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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-08-21 03:24:41 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_layout_RenderFrameParent_h
|
|
|
|
#define mozilla_layout_RenderFrameParent_h
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-07-20 10:48:27 +04:00
|
|
|
#include <map>
|
|
|
|
|
2015-03-19 13:33:33 +03:00
|
|
|
#include "mozilla/layers/APZUtils.h"
|
2017-04-10 00:30:27 +03:00
|
|
|
#include "mozilla/layers/CompositorOptions.h"
|
2015-02-17 05:30:02 +03:00
|
|
|
#include "mozilla/layers/LayersTypes.h"
|
2010-08-21 03:24:41 +04:00
|
|
|
#include "mozilla/layout/PRenderFrameParent.h"
|
|
|
|
#include "nsDisplayList.h"
|
|
|
|
|
|
|
|
class nsFrameLoader;
|
2011-01-13 20:45:14 +03:00
|
|
|
class nsSubDocumentFrame;
|
2010-08-21 03:24:41 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2011-01-13 20:45:14 +03:00
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
class InputEvent;
|
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
namespace layers {
|
2015-09-29 00:00:25 +03:00
|
|
|
class AsyncDragMetrics;
|
2012-07-24 23:01:09 +04:00
|
|
|
class TargetConfig;
|
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 13:20:52 +04:00
|
|
|
struct TextureFactoryIdentifier;
|
2013-11-13 22:20:31 +04:00
|
|
|
struct ScrollableLayerGuid;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace layers
|
2010-08-21 03:24:41 +04:00
|
|
|
|
|
|
|
namespace layout {
|
|
|
|
|
2018-09-06 04:23:14 +03:00
|
|
|
class RenderFrameParent final : public PRenderFrameParent
|
2010-08-21 03:24:41 +04:00
|
|
|
{
|
2015-09-29 00:00:25 +03:00
|
|
|
typedef mozilla::layers::AsyncDragMetrics AsyncDragMetrics;
|
2011-01-13 20:45:14 +03:00
|
|
|
typedef mozilla::layers::FrameMetrics FrameMetrics;
|
2017-04-10 00:30:27 +03:00
|
|
|
typedef mozilla::layers::CompositorOptions CompositorOptions;
|
2010-08-21 03:24:41 +04:00
|
|
|
typedef mozilla::layers::ContainerLayer ContainerLayer;
|
|
|
|
typedef mozilla::layers::Layer Layer;
|
|
|
|
typedef mozilla::layers::LayerManager LayerManager;
|
2018-03-25 02:06:01 +03:00
|
|
|
typedef mozilla::layers::LayersId LayersId;
|
2012-07-24 23:01:09 +04:00
|
|
|
typedef mozilla::layers::TargetConfig TargetConfig;
|
2013-09-27 10:01:16 +04:00
|
|
|
typedef mozilla::ContainerLayerParameters ContainerLayerParameters;
|
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 13:20:52 +04:00
|
|
|
typedef mozilla::layers::TextureFactoryIdentifier TextureFactoryIdentifier;
|
2013-11-13 22:20:31 +04:00
|
|
|
typedef mozilla::layers::ScrollableLayerGuid ScrollableLayerGuid;
|
2015-03-19 13:33:33 +03:00
|
|
|
typedef mozilla::layers::TouchBehaviorFlags TouchBehaviorFlags;
|
2014-01-06 22:26:44 +04:00
|
|
|
typedef mozilla::layers::ZoomConstraints ZoomConstraints;
|
2011-01-13 20:45:14 +03:00
|
|
|
typedef FrameMetrics::ViewID ViewID;
|
2010-08-21 03:24:41 +04:00
|
|
|
|
|
|
|
public:
|
2011-01-13 20:45:14 +03:00
|
|
|
|
2014-01-16 01:10:39 +04:00
|
|
|
|
2012-07-20 10:48:27 +04:00
|
|
|
/**
|
|
|
|
* Select the desired scrolling behavior. If ASYNC_PAN_ZOOM is
|
|
|
|
* chosen, then RenderFrameParent will watch input events and use
|
|
|
|
* them to asynchronously pan and zoom.
|
|
|
|
*/
|
2017-03-31 18:43:21 +03:00
|
|
|
explicit RenderFrameParent(nsFrameLoader* aFrameLoader);
|
2014-05-08 18:04:00 +04:00
|
|
|
virtual ~RenderFrameParent();
|
2013-11-20 16:32:52 +04:00
|
|
|
|
2016-03-29 19:49:07 +03:00
|
|
|
bool Init(nsFrameLoader* aFrameLoader);
|
|
|
|
bool IsInitted();
|
2011-01-06 07:54:47 +03:00
|
|
|
void Destroy();
|
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsSubDocumentFrame* aFrame,
|
|
|
|
const nsDisplayListSet& aLists);
|
2011-01-13 20:45:14 +03:00
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame,
|
2010-10-14 02:55:45 +04:00
|
|
|
LayerManager* aManager,
|
2012-09-17 02:25:33 +04:00
|
|
|
nsDisplayItem* aItem,
|
2013-09-27 10:01:16 +04:00
|
|
|
const ContainerLayerParameters& aContainerParameters);
|
2010-08-21 03:24:41 +04:00
|
|
|
|
2011-01-13 20:45:14 +03:00
|
|
|
void OwnerContentChanged(nsIContent* aContent);
|
|
|
|
|
2013-08-13 11:56:57 +04:00
|
|
|
bool HitTest(const nsRect& aRect);
|
|
|
|
|
2014-11-16 21:23:22 +03:00
|
|
|
void GetTextureFactoryIdentifier(TextureFactoryIdentifier* aTextureFactoryIdentifier);
|
|
|
|
|
2018-03-25 02:06:01 +03:00
|
|
|
inline LayersId GetLayersId() const { return mLayersId; }
|
2017-03-31 18:43:21 +03:00
|
|
|
inline bool IsLayersConnected() const { return mLayersConnected; }
|
2017-04-10 00:30:27 +03:00
|
|
|
inline CompositorOptions GetCompositorOptions() const { return mCompositorOptions; }
|
2015-02-05 22:41:50 +03:00
|
|
|
|
2015-11-16 17:03:35 +03:00
|
|
|
void TakeFocusForClickFromTap();
|
2015-02-05 22:41:50 +03:00
|
|
|
|
2017-04-10 00:31:24 +03:00
|
|
|
void EnsureLayersConnected(CompositorOptions* aCompositorOptions);
|
2016-09-20 11:19:32 +03:00
|
|
|
|
2017-04-18 07:41:18 +03:00
|
|
|
LayerManager* AttachLayerManager();
|
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
protected:
|
2015-03-21 19:28:04 +03:00
|
|
|
void ActorDestroy(ActorDestroyReason why) override;
|
2010-08-21 03:24:41 +04:00
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
virtual mozilla::ipc::IPCResult RecvNotifyCompositorTransaction() override;
|
2012-07-18 03:59:45 +04:00
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
private:
|
2012-07-18 03:59:45 +04:00
|
|
|
void TriggerRepaint();
|
2012-07-20 10:48:27 +04:00
|
|
|
void DispatchEventForPanZoomController(const InputEvent& aEvent);
|
2011-01-13 20:45:14 +03:00
|
|
|
|
2012-07-18 03:59:45 +04:00
|
|
|
// When our child frame is pushing transactions directly to the
|
|
|
|
// compositor, this is the ID of its layer tree in the compositor's
|
|
|
|
// context.
|
2018-03-25 02:06:01 +03:00
|
|
|
LayersId mLayersId;
|
2017-03-31 18:43:21 +03:00
|
|
|
// A flag that indicates whether or not the compositor knows about the
|
|
|
|
// layers id. In some cases this RenderFrameParent is not connected to the
|
|
|
|
// compositor and so this flag is false.
|
|
|
|
bool mLayersConnected;
|
2017-04-10 00:30:27 +03:00
|
|
|
// The compositor options for this layers id. This is only meaningful if
|
|
|
|
// the compositor actually knows about this layers id (i.e. when mLayersConnected
|
|
|
|
// is true).
|
|
|
|
CompositorOptions mCompositorOptions;
|
2012-07-18 03:59:45 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsFrameLoader> mFrameLoader;
|
|
|
|
RefPtr<ContainerLayer> mContainer;
|
2017-04-18 07:41:18 +03:00
|
|
|
RefPtr<LayerManager> mLayerManager;
|
2013-07-30 22:03:40 +04:00
|
|
|
|
2011-09-27 22:35:23 +04:00
|
|
|
// True after Destroy() has been called, which is triggered
|
|
|
|
// originally by nsFrameLoader::Destroy(). After this point, we can
|
|
|
|
// no longer safely ask the frame loader to find its nearest layer
|
|
|
|
// manager, because it may have been disconnected from the DOM.
|
|
|
|
// It's still OK to *tell* the frame loader that we've painted after
|
|
|
|
// it's destroyed; it'll just ignore us, and we won't be able to
|
|
|
|
// find an nsIFrame to invalidate. See ShadowLayersUpdated().
|
|
|
|
//
|
|
|
|
// Prefer the extra bit of state to null'ing out mFrameLoader in
|
|
|
|
// Destroy() so that less code needs to be special-cased for after
|
|
|
|
// Destroy().
|
2017-07-06 15:00:35 +03:00
|
|
|
//
|
2011-09-27 22:35:23 +04:00
|
|
|
// It's possible for mFrameLoader==null and
|
|
|
|
// mFrameLoaderDestroyed==false.
|
|
|
|
bool mFrameLoaderDestroyed;
|
2013-08-13 11:56:57 +04:00
|
|
|
|
2015-06-04 23:51:10 +03:00
|
|
|
bool mAsyncPanZoomEnabled;
|
2016-03-29 19:49:07 +03:00
|
|
|
bool mInitted;
|
2010-08-21 03:24:41 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace layout
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A DisplayRemote exists solely to graft a child process's shadow
|
|
|
|
* layer tree (for a given RenderFrameParent) into its parent
|
|
|
|
* process's layer tree.
|
|
|
|
*/
|
2018-09-06 04:23:14 +03:00
|
|
|
class nsDisplayRemote final : public nsDisplayItem
|
2010-08-21 03:24:41 +04:00
|
|
|
{
|
|
|
|
typedef mozilla::layout::RenderFrameParent RenderFrameParent;
|
|
|
|
|
|
|
|
public:
|
2018-08-31 22:08:01 +03:00
|
|
|
nsDisplayRemote(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsSubDocumentFrame* aFrame);
|
2010-08-21 03:24:41 +04:00
|
|
|
|
2018-08-31 22:08:01 +03:00
|
|
|
bool HasDeletedFrame() const override;
|
2010-08-21 03:24:41 +04:00
|
|
|
|
2018-08-31 22:08:01 +03:00
|
|
|
LayerState GetLayerState(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
|
|
|
const ContainerLayerParameters& aParameters) override
|
|
|
|
{
|
|
|
|
return mozilla::LAYER_ACTIVE_FORCE;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Layer>
|
2011-06-22 16:11:27 +04:00
|
|
|
BuildLayer(nsDisplayListBuilder* aBuilder, LayerManager* aManager,
|
2015-03-21 19:28:04 +03:00
|
|
|
const ContainerLayerParameters& aContainerParameters) override;
|
2010-08-21 03:24:41 +04:00
|
|
|
|
2018-08-31 22:08:01 +03:00
|
|
|
bool CreateWebRenderCommands(mozilla::wr::DisplayListBuilder& aBuilder,
|
|
|
|
mozilla::wr::IpcResourceUpdateQueue& aResources,
|
|
|
|
const StackingContextHelper& aSc,
|
|
|
|
mozilla::layers::WebRenderLayerManager* aManager,
|
|
|
|
nsDisplayListBuilder* aDisplayListBuilder) override;
|
|
|
|
bool UpdateScrollData(mozilla::layers::WebRenderScrollData* aData,
|
|
|
|
mozilla::layers::WebRenderLayerScrollData* aLayerData) override;
|
2017-07-25 15:18:49 +03:00
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
NS_DISPLAY_DECL_NAME("Remote", TYPE_REMOTE)
|
|
|
|
|
|
|
|
private:
|
2018-08-31 22:08:01 +03:00
|
|
|
mozilla::layers::LayersId GetRemoteLayersId() const;
|
|
|
|
RenderFrameParent* GetRenderFrameParent() const;
|
|
|
|
|
2017-08-16 19:50:37 +03:00
|
|
|
mozilla::LayoutDeviceIntPoint mOffset;
|
2015-02-17 05:30:02 +03:00
|
|
|
mozilla::layers::EventRegionsOverride mEventRegionsOverride;
|
2010-08-21 03:24:41 +04:00
|
|
|
};
|
|
|
|
|
2011-01-13 20:45:14 +03:00
|
|
|
|
2010-08-21 03:24:41 +04:00
|
|
|
#endif // mozilla_layout_RenderFrameParent_h
|