1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef widget_windows_CompositorWidgetParent_h
#define widget_windows_CompositorWidgetParent_h
#include "WinCompositorWidget.h"
#include "mozilla/Maybe.h"
#include "mozilla/widget/PCompositorWidgetParent.h"
namespace mozilla {
namespace widget {
enum class TransparencyMode : uint8_t;
namespace remote_backbuffer {
class Client;
}
class CompositorWidgetParent final : public PCompositorWidgetParent,
public WinCompositorWidget {
public:
NS_INLINE_DECL_REFCOUNTING_INHERITED(CompositorWidgetParent, CompositorWidget)
explicit CompositorWidgetParent(const CompositorWidgetInitData& aInitData,
const layers::CompositorOptions& aOptions);
bool Initialize(const RemoteBackbufferHandles& aRemoteHandles);
bool PreRender(WidgetRenderingContext*) override;
void PostRender(WidgetRenderingContext*) override;
already_AddRefed<gfx::DrawTarget> StartRemoteDrawingInRegion(
const LayoutDeviceIntRegion& aInvalidRegion) override;
void EndRemoteDrawingInRegion(
gfx::DrawTarget* aDrawTarget,
const LayoutDeviceIntRegion& aInvalidRegion) override;
LayoutDeviceIntSize GetClientSize() override;
already_AddRefed<gfx::DrawTarget> GetBackBufferDrawTarget(
gfx::DrawTarget* aScreenTarget, const gfx::IntRect& aRect,
bool* aOutIsCleared) override;
already_AddRefed<gfx::SourceSurface> EndBackBufferDrawing() override;
bool InitCompositor(layers::Compositor* aCompositor) override;
bool IsHidden() const override;
bool GetWindowIsFullyOccluded() const override;
mozilla::ipc::IPCResult RecvInitialize(
const RemoteBackbufferHandles& aRemoteHandles) override;
mozilla::ipc::IPCResult RecvEnterPresentLock() override;
mozilla::ipc::IPCResult RecvLeavePresentLock() override;
mozilla::ipc::IPCResult RecvNotifyVisibilityUpdated(
const bool& aIsFullyOccluded) override;
mozilla::ipc::IPCResult RecvUpdateTransparency(
const TransparencyMode& aTransparencyMode) override;
void ActorDestroy(ActorDestroyReason aWhy) override;
nsIWidget* RealWidget() override;
void ObserveVsync(VsyncObserver* aObserver) override;
RefPtr<VsyncObserver> GetVsyncObserver() const override;
// PlatformCompositorWidgetDelegate Overrides
void UpdateCompositorWnd(const HWND aCompositorWnd,
const HWND aParentWnd) override;
void SetRootLayerTreeID(const layers::LayersId& aRootLayerTreeId) override;
private:
~CompositorWidgetParent() override;
RefPtr<VsyncObserver> mVsyncObserver;
Maybe<layers::LayersId> mRootLayerTreeID;
HWND mWnd;
gfx::CriticalSection mPresentLock;
// Visibility handling.
mozilla::Atomic<nsSizeMode, MemoryOrdering::Relaxed> mSizeMode;
mozilla::Atomic<bool, MemoryOrdering::Relaxed> mIsFullyOccluded;
std::unique_ptr<remote_backbuffer::Client> mRemoteBackbufferClient;
};
} // namespace widget
} // namespace mozilla
#endif // widget_windows_CompositorWidgetParent_h
|