mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
54c54c7a09
This is the first step in using these functions without having a LayerManagerComposite at all. MozReview-Commit-ID: 2zkuB7Ox4Ut --HG-- extra : rebase_source : b23988275f5851a2fd30bd3e8a9931107a224c66
146 lines
3.5 KiB
C++
146 lines
3.5 KiB
C++
/* 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/. */
|
|
|
|
#include "InProcessCompositorWidget.h"
|
|
#include "nsBaseWidget.h"
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID) && !defined(MOZ_WIDGET_SUPPORTS_OOP_COMPOSITING)
|
|
#include "mozilla/widget/AndroidCompositorWidget.h"
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
namespace widget {
|
|
|
|
// Platforms with no OOP compositor process support use
|
|
// InProcessCompositorWidget by default.
|
|
#if !defined(MOZ_WIDGET_SUPPORTS_OOP_COMPOSITING)
|
|
/* static */ RefPtr<CompositorWidget>
|
|
CompositorWidget::CreateLocal(const CompositorWidgetInitData& aInitData, nsIWidget* aWidget)
|
|
{
|
|
MOZ_ASSERT(aWidget);
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
return new AndroidCompositorWidget(static_cast<nsBaseWidget*>(aWidget));
|
|
#else
|
|
return new InProcessCompositorWidget(static_cast<nsBaseWidget*>(aWidget));
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
InProcessCompositorWidget::InProcessCompositorWidget(nsBaseWidget* aWidget)
|
|
: mWidget(aWidget)
|
|
{
|
|
}
|
|
|
|
bool
|
|
InProcessCompositorWidget::PreRender(WidgetRenderingContext* aContext)
|
|
{
|
|
return mWidget->PreRender(aContext);
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::PostRender(WidgetRenderingContext* aContext)
|
|
{
|
|
mWidget->PostRender(aContext);
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::DrawWindowUnderlay(WidgetRenderingContext* aContext,
|
|
LayoutDeviceIntRect aRect)
|
|
{
|
|
mWidget->DrawWindowUnderlay(aContext, aRect);
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::DrawWindowOverlay(WidgetRenderingContext* aContext,
|
|
LayoutDeviceIntRect aRect)
|
|
{
|
|
mWidget->DrawWindowOverlay(aContext, aRect);
|
|
}
|
|
|
|
already_AddRefed<gfx::DrawTarget>
|
|
InProcessCompositorWidget::StartRemoteDrawing()
|
|
{
|
|
return mWidget->StartRemoteDrawing();
|
|
}
|
|
|
|
already_AddRefed<gfx::DrawTarget>
|
|
InProcessCompositorWidget::StartRemoteDrawingInRegion(LayoutDeviceIntRegion& aInvalidRegion,
|
|
layers::BufferMode* aBufferMode)
|
|
{
|
|
return mWidget->StartRemoteDrawingInRegion(aInvalidRegion, aBufferMode);
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::EndRemoteDrawing()
|
|
{
|
|
mWidget->EndRemoteDrawing();
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::EndRemoteDrawingInRegion(gfx::DrawTarget* aDrawTarget,
|
|
LayoutDeviceIntRegion& aInvalidRegion)
|
|
{
|
|
mWidget->EndRemoteDrawingInRegion(aDrawTarget, aInvalidRegion);
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::CleanupRemoteDrawing()
|
|
{
|
|
mWidget->CleanupRemoteDrawing();
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::CleanupWindowEffects()
|
|
{
|
|
mWidget->CleanupWindowEffects();
|
|
}
|
|
|
|
bool
|
|
InProcessCompositorWidget::InitCompositor(layers::Compositor* aCompositor)
|
|
{
|
|
return mWidget->InitCompositor(aCompositor);
|
|
}
|
|
|
|
LayoutDeviceIntSize
|
|
InProcessCompositorWidget::GetClientSize()
|
|
{
|
|
return mWidget->GetClientSize();
|
|
}
|
|
|
|
uint32_t
|
|
InProcessCompositorWidget::GetGLFrameBufferFormat()
|
|
{
|
|
return mWidget->GetGLFrameBufferFormat();
|
|
}
|
|
|
|
layers::Composer2D*
|
|
InProcessCompositorWidget::GetComposer2D()
|
|
{
|
|
return mWidget->GetComposer2D();
|
|
}
|
|
|
|
uintptr_t
|
|
InProcessCompositorWidget::GetWidgetKey()
|
|
{
|
|
return reinterpret_cast<uintptr_t>(mWidget);
|
|
}
|
|
|
|
nsIWidget*
|
|
InProcessCompositorWidget::RealWidget()
|
|
{
|
|
return mWidget;
|
|
}
|
|
|
|
void
|
|
InProcessCompositorWidget::ObserveVsync(VsyncObserver* aObserver)
|
|
{
|
|
if (RefPtr<CompositorVsyncDispatcher> cvd = mWidget->GetCompositorVsyncDispatcher()) {
|
|
cvd->SetCompositorVsyncObserver(aObserver);
|
|
}
|
|
}
|
|
|
|
} // namespace widget
|
|
} // namespace mozilla
|
|
|