gecko-dev/gfx/layers/wr/WebRenderImageHost.h
sotaro a807c798e9 Bug 1712486 - Add async front buffer posting for out-of-process WebGL r=jgilbert,lsalzman,gfx-reviewers
The async front buffer posting is going to be enabled by another bug.

Async IPC was added for async front buffer posting for out-of-process WebGL.
Client does not use TextureClient for storing SurfaceDescriptor.
It works basically same way as to in-process WebGL around nsDisplayCanvas, WebRenderCanvasData, WebRenderCommandBuilder and WebRenderBridgeParent.
SharedSurfaces of SurfaceDescriptorD3D10 are kept alive during their usage. It is for keeping a shread handle valid.
Copied data buffers of SharedShurface_Basics are kept alive during their usage. It is for keeping RenderBufferTextureHost valid.

Differential Revision: https://phabricator.services.mozilla.com/D150197
2022-06-29 09:32:29 +00:00

84 lines
2.8 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 MOZILLA_GFX_WEBRENDERIMAGEHOST_H
#define MOZILLA_GFX_WEBRENDERIMAGEHOST_H
#include <unordered_map>
#include "CompositableHost.h" // for CompositableHost
#include "mozilla/layers/ImageComposite.h" // for ImageComposite
#include "mozilla/WeakPtr.h"
namespace mozilla {
namespace layers {
class AsyncImagePipelineManager;
class WebRenderBridgeParent;
class WebRenderBridgeParentRef;
class RemoteTextureConsumerClient;
/**
* ImageHost. Works with ImageClientSingle and ImageClientBuffered
*/
class WebRenderImageHost : public CompositableHost, public ImageComposite {
public:
explicit WebRenderImageHost(const TextureInfo& aTextureInfo);
virtual ~WebRenderImageHost();
void UseTextureHost(const nsTArray<TimedTexture>& aTextures) override;
void UseRemoteTexture(const RemoteTextureId aTextureId,
const RemoteTextureOwnerId aOwnerId,
const CompositableHandle& aHandle,
const base::ProcessId aForPid, const gfx::IntSize aSize,
const TextureFlags aFlags) override;
void RemoveTextureHost(TextureHost* aTexture) override;
void Dump(std::stringstream& aStream, const char* aPrefix = "",
bool aDumpHtml = false) override;
void CleanupResources() override;
void OnReleased() override;
uint32_t GetDroppedFrames() override { return GetDroppedFramesAndReset(); }
WebRenderImageHost* AsWebRenderImageHost() override { return this; }
TextureHost* GetAsTextureHostForComposite(
AsyncImagePipelineManager* aAsyncImageManager);
void SetWrBridge(const wr::PipelineId& aPipelineId,
WebRenderBridgeParent* aWrBridge);
void ClearWrBridge(const wr::PipelineId& aPipelineId,
WebRenderBridgeParent* aWrBridge);
TextureHost* GetCurrentTextureHost() { return mCurrentTextureHost; }
protected:
// ImageComposite
TimeStamp GetCompositionTime() const override;
CompositionOpportunityId GetCompositionOpportunityId() const override;
void AppendImageCompositeNotification(
const ImageCompositeNotificationInfo& aInfo) const override;
void SetCurrentTextureHost(TextureHost* aTexture);
std::unordered_map<uint64_t, RefPtr<WebRenderBridgeParentRef>> mWrBridges;
AsyncImagePipelineManager* mCurrentAsyncImageManager;
CompositableTextureHostRef mCurrentTextureHost;
UniquePtr<RemoteTextureConsumerClient> mRemoteTextureConsumer;
};
} // namespace layers
} // namespace mozilla
#endif // MOZILLA_GFX_WEBRENDERIMAGEHOST_H