2012-05-10 02:32:54 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-12-12 15:15:57 +00:00
|
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
2012-05-21 11:12:37 +00: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/. */
|
2011-12-12 15:15:57 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_layers_CompositorParent_h
|
|
|
|
#define mozilla_layers_CompositorParent_h
|
|
|
|
|
2012-02-10 23:06:17 +00:00
|
|
|
// Enable this pref to turn on compositor performance warning.
|
|
|
|
// This will print warnings if the compositor isn't meeting
|
2012-03-12 20:32:02 +00:00
|
|
|
// its responsiveness objectives:
|
2012-02-10 23:06:17 +00:00
|
|
|
// 1) Compose a frame within 15ms of receiving a ScheduleCompositeCall
|
|
|
|
// 2) Unless a frame was composited within the throttle threshold in
|
|
|
|
// which the deadline will be 15ms + throttle threshold
|
2012-05-28 21:28:31 +00:00
|
|
|
//#define COMPOSITOR_PERFORMANCE_WARNING
|
2012-02-10 23:06:17 +00:00
|
|
|
|
2013-08-11 23:17:23 +00:00
|
|
|
#include <stdint.h> // for uint64_t
|
|
|
|
#include "Layers.h" // for Layer
|
|
|
|
#include "ShadowLayersManager.h" // for ShadowLayersManager
|
|
|
|
#include "base/basictypes.h" // for DISALLOW_EVIL_CONSTRUCTORS
|
|
|
|
#include "base/platform_thread.h" // for PlatformThreadId
|
2014-07-07 01:30:15 +00:00
|
|
|
#include "base/thread.h" // for Thread
|
2013-08-11 23:17:23 +00:00
|
|
|
#include "mozilla/Assertions.h" // for MOZ_ASSERT_HELPER2
|
|
|
|
#include "mozilla/Attributes.h" // for MOZ_OVERRIDE
|
|
|
|
#include "mozilla/Monitor.h" // for Monitor
|
|
|
|
#include "mozilla/RefPtr.h" // for RefPtr
|
|
|
|
#include "mozilla/TimeStamp.h" // for TimeStamp
|
|
|
|
#include "mozilla/ipc/ProtocolUtils.h"
|
|
|
|
#include "mozilla/layers/GeckoContentController.h"
|
2013-09-06 15:41:00 +00:00
|
|
|
#include "mozilla/layers/LayersMessages.h" // for TargetConfig
|
2011-12-12 15:15:57 +00:00
|
|
|
#include "mozilla/layers/PCompositorParent.h"
|
2014-04-21 21:46:50 +00:00
|
|
|
#include "mozilla/layers/APZTestData.h"
|
2013-08-11 23:17:23 +00:00
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nsSize.h" // for nsIntSize
|
2014-07-04 18:04:12 +00:00
|
|
|
#include "ThreadSafeRefcountingWithMainThreadDestruction.h"
|
2013-04-28 06:46:30 +00:00
|
|
|
|
2013-08-11 23:17:23 +00:00
|
|
|
class CancelableTask;
|
|
|
|
class MessageLoop;
|
|
|
|
class gfxContext;
|
2012-01-06 22:52:32 +00:00
|
|
|
class nsIWidget;
|
2011-12-15 20:07:25 +00:00
|
|
|
|
2011-12-12 15:15:57 +00:00
|
|
|
namespace mozilla {
|
2013-09-27 00:37:19 +00:00
|
|
|
namespace gfx {
|
|
|
|
class DrawTarget;
|
|
|
|
}
|
|
|
|
|
2011-12-12 15:15:57 +00:00
|
|
|
namespace layers {
|
|
|
|
|
2013-07-30 18:03:40 +00:00
|
|
|
class APZCTreeManager;
|
2013-08-12 02:21:17 +00:00
|
|
|
class AsyncCompositionManager;
|
2013-12-09 01:40:58 +00:00
|
|
|
class Compositor;
|
2013-08-11 23:17:23 +00:00
|
|
|
class LayerManagerComposite;
|
|
|
|
class LayerTransactionParent;
|
2012-01-06 22:52:32 +00:00
|
|
|
|
2013-07-30 18:03:41 +00:00
|
|
|
struct ScopedLayerTreeRegistration
|
|
|
|
{
|
|
|
|
ScopedLayerTreeRegistration(uint64_t aLayersId,
|
|
|
|
Layer* aRoot,
|
|
|
|
GeckoContentController* aController);
|
|
|
|
~ScopedLayerTreeRegistration();
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint64_t mLayersId;
|
|
|
|
};
|
|
|
|
|
2014-07-07 01:30:15 +00:00
|
|
|
class CompositorThreadHolder MOZ_FINAL
|
|
|
|
{
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING_WITH_MAIN_THREAD_DESTRUCTION(CompositorThreadHolder)
|
|
|
|
|
|
|
|
public:
|
|
|
|
CompositorThreadHolder();
|
|
|
|
|
|
|
|
base::Thread* GetCompositorThread() const {
|
|
|
|
return mCompositorThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
~CompositorThreadHolder();
|
|
|
|
|
|
|
|
base::Thread* const mCompositorThread;
|
|
|
|
|
|
|
|
static base::Thread* CreateCompositorThread();
|
|
|
|
static void DestroyCompositorThread(base::Thread* aCompositorThread);
|
|
|
|
|
|
|
|
friend class CompositorParent;
|
|
|
|
};
|
2014-07-04 18:04:11 +00:00
|
|
|
|
2014-05-28 14:44:00 +00:00
|
|
|
class CompositorParent : public PCompositorParent,
|
|
|
|
public ShadowLayersManager
|
2011-12-12 15:15:57 +00:00
|
|
|
{
|
2014-07-04 18:04:12 +00:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING_WITH_MAIN_THREAD_DESTRUCTION(CompositorParent)
|
2012-11-22 02:40:57 +00:00
|
|
|
|
2011-12-12 15:15:57 +00:00
|
|
|
public:
|
2012-07-13 15:25:29 +00:00
|
|
|
CompositorParent(nsIWidget* aWidget,
|
2013-04-30 03:16:04 +00:00
|
|
|
bool aUseExternalSurfaceSize = false,
|
2012-05-08 19:40:41 +00:00
|
|
|
int aSurfaceWidth = -1, int aSurfaceHeight = -1);
|
2012-04-24 13:22:34 +00:00
|
|
|
|
2013-06-03 10:14:37 +00:00
|
|
|
// IToplevelProtocol::CloneToplevel()
|
|
|
|
virtual IToplevelProtocol*
|
|
|
|
CloneToplevel(const InfallibleTArray<mozilla::ipc::ProtocolFdMapping>& aFds,
|
|
|
|
base::ProcessHandle aPeerProcess,
|
|
|
|
mozilla::ipc::ProtocolCloneContext* aCtx) MOZ_OVERRIDE;
|
|
|
|
|
2014-05-08 15:32:00 +00:00
|
|
|
virtual bool RecvRequestOverfill() MOZ_OVERRIDE;
|
2012-03-30 19:43:11 +00:00
|
|
|
virtual bool RecvWillStop() MOZ_OVERRIDE;
|
2012-01-16 15:31:16 +00:00
|
|
|
virtual bool RecvStop() MOZ_OVERRIDE;
|
2012-03-28 22:00:10 +00:00
|
|
|
virtual bool RecvPause() MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvResume() MOZ_OVERRIDE;
|
2013-07-12 02:32:09 +00:00
|
|
|
virtual bool RecvNotifyChildCreated(const uint64_t& child) MOZ_OVERRIDE;
|
2012-10-04 07:05:24 +00:00
|
|
|
virtual bool RecvMakeSnapshot(const SurfaceDescriptor& aInSnapshot,
|
2014-05-28 01:21:32 +00:00
|
|
|
const nsIntRect& aRect) MOZ_OVERRIDE;
|
2013-06-18 07:58:43 +00:00
|
|
|
virtual bool RecvFlushRendering() MOZ_OVERRIDE;
|
2011-12-12 15:15:57 +00:00
|
|
|
|
2013-11-21 19:25:16 +00:00
|
|
|
virtual bool RecvNotifyRegionInvalidated(const nsIntRegion& aRegion) MOZ_OVERRIDE;
|
2013-11-27 07:32:19 +00:00
|
|
|
virtual bool RecvStartFrameTimeRecording(const int32_t& aBufferSize, uint32_t* aOutStartIndex) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvStopFrameTimeRecording(const uint32_t& aStartIndex, InfallibleTArray<float>* intervals) MOZ_OVERRIDE;
|
2013-11-21 19:25:16 +00:00
|
|
|
|
2013-04-11 10:14:29 +00:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
|
|
|
|
|
2013-04-24 18:42:40 +00:00
|
|
|
virtual void ShadowLayersUpdated(LayerTransactionParent* aLayerTree,
|
2014-05-28 21:42:14 +00:00
|
|
|
const uint64_t& aTransactionId,
|
2012-07-24 19:01:09 +00:00
|
|
|
const TargetConfig& aTargetConfig,
|
2013-12-16 05:38:42 +00:00
|
|
|
bool aIsFirstPaint,
|
2014-05-06 21:26:13 +00:00
|
|
|
bool aScheduleComposite,
|
|
|
|
uint32_t aPaintSequenceNumber) MOZ_OVERRIDE;
|
2014-03-03 00:59:58 +00:00
|
|
|
virtual void ForceComposite(LayerTransactionParent* aLayerTree) MOZ_OVERRIDE;
|
2014-03-21 21:59:57 +00:00
|
|
|
virtual bool SetTestSampleTime(LayerTransactionParent* aLayerTree,
|
|
|
|
const TimeStamp& aTime) MOZ_OVERRIDE;
|
|
|
|
virtual void LeaveTestMode(LayerTransactionParent* aLayerTree) MOZ_OVERRIDE;
|
2014-05-07 23:56:48 +00:00
|
|
|
virtual void GetAPZTestData(const LayerTransactionParent* aLayerTree,
|
|
|
|
APZTestData* aOutData) MOZ_OVERRIDE;
|
2014-02-24 22:45:40 +00:00
|
|
|
virtual AsyncCompositionManager* GetCompositionManager(LayerTransactionParent* aLayerTree) MOZ_OVERRIDE { return mCompositionManager; }
|
2014-03-21 21:59:57 +00:00
|
|
|
|
2013-02-04 20:13:17 +00:00
|
|
|
/**
|
|
|
|
* This forces the is-first-paint flag to true. This is intended to
|
|
|
|
* be called by the widget code when it loses its viewport information
|
|
|
|
* (or for whatever reason wants to refresh the viewport information).
|
|
|
|
* The information refresh happens because the compositor will call
|
|
|
|
* SetFirstPaintViewport on the next frame of composition.
|
|
|
|
*/
|
2013-04-28 06:46:30 +00:00
|
|
|
void ForceIsFirstPaint();
|
2011-12-22 15:59:53 +00:00
|
|
|
void Destroy();
|
|
|
|
|
2014-06-14 07:25:02 +00:00
|
|
|
void NotifyChildCreated(const uint64_t& aChild);
|
2013-07-12 02:32:09 +00:00
|
|
|
|
2012-02-01 19:31:34 +00:00
|
|
|
void AsyncRender();
|
2012-02-09 22:39:04 +00:00
|
|
|
|
2012-02-06 17:38:23 +00:00
|
|
|
// Can be called from any thread
|
2012-03-12 20:32:02 +00:00
|
|
|
void ScheduleRenderOnCompositorThread();
|
|
|
|
void SchedulePauseOnCompositorThread();
|
2013-01-10 16:21:10 +00:00
|
|
|
/**
|
|
|
|
* Returns true if a surface was obtained and the resume succeeded; false
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
bool ScheduleResumeOnCompositorThread(int width, int height);
|
2012-02-01 19:31:34 +00:00
|
|
|
|
2012-07-13 19:38:09 +00:00
|
|
|
virtual void ScheduleComposition();
|
2014-05-06 21:26:13 +00:00
|
|
|
void NotifyShadowTreeTransaction(uint64_t aId, bool aIsFirstPaint,
|
|
|
|
bool aScheduleComposite, uint32_t aPaintSequenceNumber);
|
2012-08-07 02:41:29 +00:00
|
|
|
|
2014-04-28 02:22:00 +00:00
|
|
|
/**
|
|
|
|
* Check rotation info and schedule a rendering task if needed.
|
|
|
|
* Only can be called from compositor thread.
|
|
|
|
*/
|
|
|
|
void ScheduleRotationOnCompositorThread(const TargetConfig& aTargetConfig, bool aIsFirstPaint);
|
|
|
|
|
2013-07-30 18:03:43 +00:00
|
|
|
/**
|
|
|
|
* Returns the unique layer tree identifier that corresponds to the root
|
|
|
|
* tree of this compositor.
|
|
|
|
*/
|
|
|
|
uint64_t RootLayerTreeId();
|
|
|
|
|
2012-07-13 19:38:09 +00: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 09:20:52 +00:00
|
|
|
* Returns a pointer to the compositor corresponding to the given ID.
|
2012-07-13 19:38:09 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
static CompositorParent* GetCompositor(uint64_t id);
|
2012-07-13 19:38:09 +00:00
|
|
|
|
2012-07-13 15:25:29 +00:00
|
|
|
/**
|
|
|
|
* Returns the compositor thread's message loop.
|
|
|
|
*
|
|
|
|
* This message loop is used by CompositorParent and ImageBridgeParent.
|
|
|
|
*/
|
|
|
|
static MessageLoop* CompositorLoop();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the compositor thread and the global compositor map.
|
|
|
|
*/
|
|
|
|
static void StartUp();
|
|
|
|
|
|
|
|
/**
|
2014-07-04 18:04:11 +00:00
|
|
|
* Waits for all [CrossProcess]CompositorParent's to be gone,
|
|
|
|
* and destroys the compositor thread and global compositor map.
|
2014-07-04 18:04:11 +00:00
|
|
|
*
|
|
|
|
* Does not return until all of that has completed.
|
2012-07-13 15:25:29 +00:00
|
|
|
*/
|
|
|
|
static void ShutDown();
|
|
|
|
|
2012-07-20 06:48:27 +00:00
|
|
|
/**
|
|
|
|
* Allocate an ID that can be used to refer to a layer tree and
|
|
|
|
* associated resources that live only on the compositor thread.
|
|
|
|
*
|
|
|
|
* Must run on the content main thread.
|
|
|
|
*/
|
2012-07-17 23:59:45 +00:00
|
|
|
static uint64_t AllocateLayerTreeId();
|
2014-04-24 08:40:35 +00:00
|
|
|
/**
|
|
|
|
* Release compositor-thread resources referred to by |aID|.
|
|
|
|
*
|
|
|
|
* Must run on the content main thread.
|
|
|
|
*/
|
|
|
|
static void DeallocateLayerTreeId(uint64_t aId);
|
2012-07-20 06:48:27 +00:00
|
|
|
|
|
|
|
/**
|
2013-07-30 18:03:40 +00:00
|
|
|
* Set aController as the pan/zoom callback for the subtree referred
|
2012-07-20 06:48:27 +00:00
|
|
|
* to by aLayersId.
|
|
|
|
*
|
|
|
|
* Must run on content main thread.
|
|
|
|
*/
|
2013-07-30 18:03:40 +00:00
|
|
|
static void SetControllerForLayerTree(uint64_t aLayersId,
|
|
|
|
GeckoContentController* aController);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This returns a reference to the APZCTreeManager to which
|
|
|
|
* pan/zoom-related events can be sent.
|
|
|
|
*/
|
|
|
|
static APZCTreeManager* GetAPZCTreeManager(uint64_t aLayersId);
|
2012-07-17 23:59:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A new child process has been configured to push transactions
|
|
|
|
* directly to us. Transport is to its thread context.
|
|
|
|
*/
|
2013-09-26 04:19:09 +00:00
|
|
|
static PCompositorParent*
|
2012-07-17 23:59:45 +00:00
|
|
|
Create(Transport* aTransport, ProcessId aOtherProcess);
|
|
|
|
|
2013-04-28 06:46:30 +00:00
|
|
|
struct LayerTreeState {
|
2013-07-31 22:20:24 +00:00
|
|
|
LayerTreeState();
|
2013-04-28 06:46:30 +00:00
|
|
|
nsRefPtr<Layer> mRoot;
|
2013-07-30 18:03:40 +00:00
|
|
|
nsRefPtr<GeckoContentController> mController;
|
2013-07-31 22:20:24 +00:00
|
|
|
CompositorParent* mParent;
|
2013-12-09 01:40:58 +00:00
|
|
|
LayerManagerComposite* mLayerManager;
|
2013-12-19 20:19:25 +00:00
|
|
|
// Pointer to the CrossProcessCompositorParent. Used by APZCs to share
|
|
|
|
// their FrameMetrics with the corresponding child process that holds
|
|
|
|
// the PCompositorChild
|
|
|
|
PCompositorParent* mCrossProcessParent;
|
2013-04-28 06:46:30 +00:00
|
|
|
TargetConfig mTargetConfig;
|
2014-04-21 21:46:50 +00:00
|
|
|
APZTestData mApzTestData;
|
2014-05-28 21:42:14 +00:00
|
|
|
LayerTransactionParent* mLayerTree;
|
2013-04-28 06:46:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup the indirect shadow tree for |aId| and return it if it
|
|
|
|
* exists. Otherwise null is returned. This must only be called on
|
|
|
|
* the compositor thread.
|
|
|
|
*/
|
2014-04-21 21:46:50 +00:00
|
|
|
static LayerTreeState* GetIndirectShadowTree(uint64_t aId);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
2013-12-09 01:40:59 +00:00
|
|
|
float ComputeRenderIntegrity();
|
|
|
|
|
2013-07-30 09:59:51 +00:00
|
|
|
/**
|
2013-08-08 12:53:12 +00:00
|
|
|
* Returns true if the calling thread is the compositor thread.
|
2013-07-30 09:59:51 +00:00
|
|
|
*/
|
|
|
|
static bool IsInCompositorThread();
|
2014-02-12 04:41:57 +00:00
|
|
|
|
2014-05-28 14:44:00 +00:00
|
|
|
protected:
|
|
|
|
// Protected destructor, to discourage deletion outside of Release():
|
2014-04-04 16:27:02 +00:00
|
|
|
virtual ~CompositorParent();
|
|
|
|
|
2014-07-04 18:04:12 +00:00
|
|
|
void DeferredDestroy();
|
|
|
|
|
2013-04-24 18:42:40 +00:00
|
|
|
virtual PLayerTransactionParent*
|
2013-08-18 06:46:16 +00:00
|
|
|
AllocPLayerTransactionParent(const nsTArray<LayersBackend>& aBackendHints,
|
2013-07-08 15:48:39 +00:00
|
|
|
const uint64_t& aId,
|
2013-08-04 07:46:17 +00:00
|
|
|
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
2014-01-17 19:49:39 +00:00
|
|
|
bool* aSuccess) MOZ_OVERRIDE;
|
|
|
|
virtual bool DeallocPLayerTransactionParent(PLayerTransactionParent* aLayers) MOZ_OVERRIDE;
|
2012-04-24 13:22:36 +00:00
|
|
|
virtual void ScheduleTask(CancelableTask*, int);
|
2014-05-28 21:42:14 +00:00
|
|
|
void CompositeCallback();
|
2014-05-28 01:21:32 +00:00
|
|
|
void CompositeToTarget(gfx::DrawTarget* aTarget, const nsIntRect* aRect = nullptr);
|
|
|
|
void ForceComposeToTarget(gfx::DrawTarget* aTarget, const nsIntRect* aRect = nullptr);
|
2013-04-26 17:26:39 +00:00
|
|
|
|
2012-05-08 19:40:41 +00:00
|
|
|
void SetEGLSurfaceSize(int width, int height);
|
2011-12-12 15:15:57 +00:00
|
|
|
|
2013-08-18 06:46:16 +00:00
|
|
|
void InitializeLayerManager(const nsTArray<LayersBackend>& aBackendHints);
|
2012-02-14 23:36:33 +00:00
|
|
|
void PauseComposition();
|
|
|
|
void ResumeComposition();
|
2012-04-20 15:46:30 +00:00
|
|
|
void ResumeCompositionAndResize(int width, int height);
|
2012-11-22 02:40:57 +00:00
|
|
|
void ForceComposition();
|
2014-03-10 04:47:12 +00:00
|
|
|
void CancelCurrentCompositeTask();
|
2012-02-14 23:36:33 +00:00
|
|
|
|
2012-07-13 19:38:09 +00:00
|
|
|
/**
|
|
|
|
* Add a compositor to the global compositor map.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
static void AddCompositor(CompositorParent* compositor, uint64_t* id);
|
2012-07-13 19:38:09 +00:00
|
|
|
/**
|
|
|
|
* Remove a compositor from the global compositor map.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
static CompositorParent* RemoveCompositor(uint64_t id);
|
2012-07-13 19:38:09 +00:00
|
|
|
|
2012-10-04 07:05:24 +00:00
|
|
|
/**
|
|
|
|
* Return true if current state allows compositing, that is
|
|
|
|
* finishing a layers transaction.
|
|
|
|
*/
|
|
|
|
bool CanComposite();
|
2012-07-13 19:38:09 +00:00
|
|
|
|
2014-03-07 03:24:32 +00:00
|
|
|
void DidComposite();
|
|
|
|
|
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 09:20:52 +00:00
|
|
|
nsRefPtr<LayerManagerComposite> mLayerManager;
|
2013-12-09 01:40:58 +00:00
|
|
|
nsRefPtr<Compositor> mCompositor;
|
2013-04-28 06:46:30 +00:00
|
|
|
RefPtr<AsyncCompositionManager> mCompositionManager;
|
2012-01-06 22:52:32 +00:00
|
|
|
nsIWidget* mWidget;
|
2012-02-06 17:38:23 +00:00
|
|
|
CancelableTask *mCurrentCompositeTask;
|
2012-02-06 18:51:33 +00:00
|
|
|
TimeStamp mLastCompose;
|
2013-05-27 23:47:45 +00:00
|
|
|
TimeStamp mTestTime;
|
|
|
|
bool mIsTesting;
|
2012-02-10 23:06:17 +00:00
|
|
|
#ifdef COMPOSITOR_PERFORMANCE_WARNING
|
2014-03-04 19:41:24 +00:00
|
|
|
TimeStamp mExpectedComposeStartTime;
|
2012-02-10 23:06:17 +00:00
|
|
|
#endif
|
2012-02-06 17:38:23 +00:00
|
|
|
|
2014-05-28 21:42:14 +00:00
|
|
|
uint64_t mPendingTransaction;
|
|
|
|
|
2012-02-06 17:38:23 +00:00
|
|
|
bool mPaused;
|
2012-03-20 04:06:56 +00:00
|
|
|
|
2013-04-30 03:16:04 +00:00
|
|
|
bool mUseExternalSurfaceSize;
|
2012-05-08 19:40:41 +00:00
|
|
|
nsIntSize mEGLSurfaceSize;
|
2012-04-24 13:22:34 +00:00
|
|
|
|
2012-05-10 02:32:54 +00:00
|
|
|
mozilla::Monitor mPauseCompositionMonitor;
|
2012-05-29 17:49:03 +00:00
|
|
|
mozilla::Monitor mResumeCompositionMonitor;
|
2012-05-10 02:32:54 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t mCompositorID;
|
2013-07-30 18:03:43 +00:00
|
|
|
uint64_t mRootLayerTreeID;
|
2012-07-13 19:38:09 +00:00
|
|
|
|
2012-11-22 02:40:57 +00:00
|
|
|
bool mOverrideComposeReadiness;
|
|
|
|
CancelableTask* mForceCompositionTask;
|
|
|
|
|
2013-07-30 18:03:40 +00:00
|
|
|
nsRefPtr<APZCTreeManager> mApzcTreeManager;
|
|
|
|
|
2014-07-04 18:04:11 +00:00
|
|
|
nsRefPtr<CompositorThreadHolder> mCompositorThreadHolder;
|
2014-07-04 18:04:11 +00:00
|
|
|
|
2011-12-15 20:07:19 +00:00
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(CompositorParent);
|
2011-12-12 15:15:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // layers
|
|
|
|
} // mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_layers_CompositorParent_h
|