forked from mirrors/gecko-dev
UnregisterTextureOwner, if called before any use of UseRemoteTexture, can cause UseRemoteTexture to wait for the texture owner to be created, since the texture owner does not exist, and there is no evidence it was previously unregistered. This patch attempts to address the issue by delaying the actual UnregisterTextureOwner until all such UseRemoteTexture instances are processed. This is accomplished by noting that UseRemoteTexture ops come in via transactions from a CompositableForwarder and so all are associated with a forwarder transaction with a FwdTransactionId. RecordedTextureData on destruction reports the last FwdTransactionId associated with its final UseRemoteTexture before it attempts to call UnregisterTextureOwner. If RemoteTextureMap has not been notified of a given FwdTransactionId yet, then the UnregisterTextureOwner call will be deferred until it has seen this FwdTransactionId. This adds a RemoteTextureTxnScheduler to track the issuing of dependencies and waiting for FwdTransactionIds. This patch also cleans up the issuing of FwdTransactionIds themselves to be associated with a given top-level protocol so that all sub-protocols have transaction numbers that can be safely compared amongst each other. This makes dependency expiration more robust since any advancement of the transaction number from any source can help retire expired dependencies. Differential Revision: https://phabricator.services.mozilla.com/D197895
78 lines
2.2 KiB
C++
78 lines
2.2 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 https://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_layers_TextureRecorded_h
|
|
#define mozilla_layers_TextureRecorded_h
|
|
|
|
#include "TextureClient.h"
|
|
#include "mozilla/layers/CanvasChild.h"
|
|
#include "mozilla/layers/LayersTypes.h"
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
class RecordedTextureData final : public TextureData {
|
|
public:
|
|
RecordedTextureData(already_AddRefed<CanvasChild> aCanvasChild,
|
|
gfx::IntSize aSize, gfx::SurfaceFormat aFormat,
|
|
TextureType aTextureType);
|
|
|
|
void FillInfo(TextureData::Info& aInfo) const final;
|
|
|
|
void InvalidateContents() final;
|
|
|
|
bool Lock(OpenMode aMode) final;
|
|
|
|
void Unlock() final;
|
|
|
|
already_AddRefed<gfx::DrawTarget> BorrowDrawTarget() final;
|
|
|
|
void EndDraw() final;
|
|
|
|
already_AddRefed<gfx::SourceSurface> BorrowSnapshot() final;
|
|
|
|
void ReturnSnapshot(already_AddRefed<gfx::SourceSurface> aSnapshot) final;
|
|
|
|
void Deallocate(LayersIPCChannel* aAllocator) final;
|
|
|
|
bool Serialize(SurfaceDescriptor& aDescriptor) final;
|
|
|
|
void OnForwardedToHost() final;
|
|
|
|
TextureFlags GetTextureFlags() const final;
|
|
|
|
void SetRemoteTextureOwnerId(
|
|
RemoteTextureOwnerId aRemoteTextureOwnerId) final;
|
|
|
|
bool RequiresRefresh() const final;
|
|
|
|
void UseCompositableForwarder(CompositableForwarder* aForwarder) final;
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(RecordedTextureData);
|
|
|
|
~RecordedTextureData() override;
|
|
|
|
int64_t mTextureId;
|
|
RefPtr<CanvasChild> mCanvasChild;
|
|
gfx::IntSize mSize;
|
|
gfx::SurfaceFormat mFormat;
|
|
RefPtr<gfx::DrawTarget> mDT;
|
|
RefPtr<gfx::SourceSurface> mSnapshot;
|
|
ThreadSafeWeakPtr<gfx::SourceSurface> mSnapshotWrapper;
|
|
OpenMode mLockedMode;
|
|
RemoteTextureId mLastRemoteTextureId;
|
|
RemoteTextureOwnerId mRemoteTextureOwnerId;
|
|
RemoteTextureTxnType mLastTxnType = 0;
|
|
RemoteTextureTxnId mLastTxnId = 0;
|
|
bool mUsedRemoteTexture = false;
|
|
bool mInvalidContents = true;
|
|
};
|
|
|
|
} // namespace layers
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_layers_TextureRecorded_h
|