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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/* -*- 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/. */
#include "mozilla/layers/CompositableClient.h"
#include <stdint.h> // for uint64_t, uint32_t
#include "gfxPlatform.h" // for gfxPlatform
#include "mozilla/layers/CompositableForwarder.h"
#include "mozilla/layers/ImageBridgeChild.h"
#include "mozilla/layers/TextureClient.h" // for TextureClient, etc
#include "mozilla/layers/TextureClientOGL.h"
#include "mozilla/layers/TextureClientRecycleAllocator.h"
#include "mozilla/mozalloc.h" // for operator delete, etc
#ifdef XP_WIN
# include "gfxWindowsPlatform.h" // for gfxWindowsPlatform
# include "mozilla/layers/TextureD3D11.h"
#endif
#include "IPDLActor.h"
#include "gfxUtils.h"
namespace mozilla {
namespace layers {
using namespace mozilla::gfx;
void CompositableClient::InitIPDL(const CompositableHandle& aHandle) {
MOZ_ASSERT(aHandle);
mForwarder->AssertInForwarderThread();
mHandle = aHandle;
mIsAsync |= !NS_IsMainThread();
// By simply taking the lock on mTextureClientRecycler we force memory barrier
// on mHandle and mIsAsync which makes them behave as Atomic as they are only
// ever set in this method.
auto l = mTextureClientRecycler.Lock();
}
CompositableClient::CompositableClient(CompositableForwarder* aForwarder,
TextureFlags aTextureFlags)
: mForwarder(aForwarder),
mTextureFlags(aTextureFlags),
mTextureClientRecycler("CompositableClient::mTextureClientRecycler"),
mIsAsync(false) {}
CompositableClient::~CompositableClient() { Destroy(); }
LayersBackend CompositableClient::GetCompositorBackendType() const {
return mForwarder->GetCompositorBackendType();
}
bool CompositableClient::Connect(ImageContainer* aImageContainer) {
MOZ_ASSERT(!mHandle);
if (!GetForwarder() || mHandle) {
return false;
}
GetForwarder()->AssertInForwarderThread();
GetForwarder()->Connect(this, aImageContainer);
return true;
}
bool CompositableClient::IsConnected() const {
// CanSend() is only reliable in the same thread as the IPDL channel.
mForwarder->AssertInForwarderThread();
return !!mHandle;
}
void CompositableClient::Destroy() {
auto l = mTextureClientRecycler.Lock();
if (*l) {
(*l)->Destroy();
}
if (mHandle) {
mForwarder->ReleaseCompositable(mHandle);
mHandle = CompositableHandle();
}
}
CompositableHandle CompositableClient::GetAsyncHandle() const {
if (mIsAsync) {
return mHandle;
}
return CompositableHandle();
}
already_AddRefed<TextureClient> CompositableClient::CreateBufferTextureClient(
gfx::SurfaceFormat aFormat, gfx::IntSize aSize,
gfx::BackendType aMoz2DBackend, TextureFlags aTextureFlags) {
return TextureClient::CreateForRawBufferAccess(GetForwarder(), aFormat, aSize,
aMoz2DBackend,
aTextureFlags | mTextureFlags);
}
already_AddRefed<TextureClient>
CompositableClient::CreateTextureClientForDrawing(
gfx::SurfaceFormat aFormat, gfx::IntSize aSize, BackendSelector aSelector,
TextureFlags aTextureFlags, TextureAllocationFlags aAllocFlags) {
return TextureClient::CreateForDrawing(
GetForwarder(), aFormat, aSize, aSelector, aTextureFlags | mTextureFlags,
aAllocFlags);
}
bool CompositableClient::AddTextureClient(TextureClient* aClient) {
if (!aClient) {
return false;
}
aClient->SetAddedToCompositableClient();
return aClient->InitIPDLActor(mForwarder);
}
void CompositableClient::ClearCachedResources() {
auto l = mTextureClientRecycler.Lock();
if (*l) {
(*l)->ShrinkToMinimumSize();
}
}
void CompositableClient::HandleMemoryPressure() {
auto l = mTextureClientRecycler.Lock();
if (*l) {
(*l)->ShrinkToMinimumSize();
}
}
void CompositableClient::RemoveTexture(TextureClient* aTexture) {
mForwarder->RemoveTextureFromCompositable(this, aTexture);
}
TextureClientRecycleAllocator* CompositableClient::GetTextureClientRecycler() {
auto l = mTextureClientRecycler.Lock();
if (*l) {
return *l;
}
if (!mForwarder || !mForwarder->GetTextureForwarder()) {
return nullptr;
}
*l = new layers::TextureClientRecycleAllocator(mForwarder);
return *l;
}
void CompositableClient::DumpTextureClient(std::stringstream& aStream,
TextureClient* aTexture,
TextureDumpMode aCompress) {
if (!aTexture) {
return;
}
RefPtr<gfx::DataSourceSurface> dSurf = aTexture->GetAsSurface();
if (!dSurf) {
return;
}
if (aCompress == TextureDumpMode::Compress) {
aStream << gfxUtils::GetAsLZ4Base64Str(dSurf).get();
} else {
aStream << gfxUtils::GetAsDataURI(dSurf).get();
}
}
AutoRemoveTexture::~AutoRemoveTexture() {
if (mCompositable && mTexture && mCompositable->IsConnected()) {
mCompositable->RemoveTexture(mTexture);
}
}
} // namespace layers
} // namespace mozilla
|