mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
974d8120f2
This conversion was done with the script: find . -name '*.cpp' -o -name '*.h' -o -name '*.mm' -o -name '*.idl' | \ egrep -v 'cairo-win32-refptr.h|RefPtr.h|TestRefPtr.cpp' | \ xargs sed -i -e 's/mozilla::TemporaryRef</already_AddRefed</g' \ -e 's/TemporaryRef</already_AddRefed</g' Manual fixups were performed in the following instances: - We handled mfbt/RefPtr.h manually so as to not convert TemporaryRef itself into already_AddRefed. - The following files had explicit Move() calls added to make up for the lack of a copy constructor on already_AddRefed: dom/base/ImageEncoder.cpp dom/media/MediaTaskQueue.{h,cpp} dom/media/webaudio/PannerNode.cpp - A redundant overload for MediaTaskQueue::Dispatch was deleted. - A few manual fixups were required in mfbt/tests/TestRefPtr.cpp. - Comments, using declarations, and forward declarations relating to TemporaryRef in dom/canvas/ and gfx/layers/ were changed to refer to already_AddRefed.
1144 lines
32 KiB
C++
1144 lines
32 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* 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 "TextureD3D11.h"
|
|
#include "CompositorD3D11.h"
|
|
#include "gfxContext.h"
|
|
#include "Effects.h"
|
|
#include "mozilla/layers/YCbCrImageDataSerializer.h"
|
|
#include "gfxWindowsPlatform.h"
|
|
#include "gfxD2DSurface.h"
|
|
#include "gfx2DGlue.h"
|
|
#include "gfxPrefs.h"
|
|
#include "ReadbackManagerD3D11.h"
|
|
#include "mozilla/gfx/Logging.h"
|
|
|
|
namespace mozilla {
|
|
|
|
using namespace gfx;
|
|
|
|
namespace layers {
|
|
|
|
static DXGI_FORMAT
|
|
SurfaceFormatToDXGIFormat(gfx::SurfaceFormat aFormat)
|
|
{
|
|
switch (aFormat) {
|
|
case SurfaceFormat::B8G8R8A8:
|
|
return DXGI_FORMAT_B8G8R8A8_UNORM;
|
|
case SurfaceFormat::B8G8R8X8:
|
|
return DXGI_FORMAT_B8G8R8A8_UNORM;
|
|
case SurfaceFormat::R8G8B8A8:
|
|
return DXGI_FORMAT_R8G8B8A8_UNORM;
|
|
case SurfaceFormat::R8G8B8X8:
|
|
return DXGI_FORMAT_R8G8B8A8_UNORM;
|
|
case SurfaceFormat::A8:
|
|
return DXGI_FORMAT_R8_UNORM;
|
|
default:
|
|
MOZ_ASSERT(false, "unsupported format");
|
|
return DXGI_FORMAT_UNKNOWN;
|
|
}
|
|
}
|
|
|
|
static uint32_t
|
|
GetRequiredTilesD3D11(uint32_t aSize, uint32_t aMaxSize)
|
|
{
|
|
uint32_t requiredTiles = aSize / aMaxSize;
|
|
if (aSize % aMaxSize) {
|
|
requiredTiles++;
|
|
}
|
|
return requiredTiles;
|
|
}
|
|
|
|
static IntRect
|
|
GetTileRectD3D11(uint32_t aID, IntSize aSize, uint32_t aMaxSize)
|
|
{
|
|
uint32_t horizontalTiles = GetRequiredTilesD3D11(aSize.width, aMaxSize);
|
|
uint32_t verticalTiles = GetRequiredTilesD3D11(aSize.height, aMaxSize);
|
|
|
|
uint32_t verticalTile = aID / horizontalTiles;
|
|
uint32_t horizontalTile = aID % horizontalTiles;
|
|
|
|
return IntRect(horizontalTile * aMaxSize,
|
|
verticalTile * aMaxSize,
|
|
horizontalTile < (horizontalTiles - 1) ? aMaxSize : aSize.width % aMaxSize,
|
|
verticalTile < (verticalTiles - 1) ? aMaxSize : aSize.height % aMaxSize);
|
|
}
|
|
|
|
DataTextureSourceD3D11::DataTextureSourceD3D11(SurfaceFormat aFormat,
|
|
CompositorD3D11* aCompositor,
|
|
TextureFlags aFlags)
|
|
: mCompositor(aCompositor)
|
|
, mFormat(aFormat)
|
|
, mFlags(aFlags)
|
|
, mCurrentTile(0)
|
|
, mIsTiled(false)
|
|
, mIterating(false)
|
|
{
|
|
MOZ_COUNT_CTOR(DataTextureSourceD3D11);
|
|
}
|
|
|
|
DataTextureSourceD3D11::DataTextureSourceD3D11(SurfaceFormat aFormat,
|
|
CompositorD3D11* aCompositor,
|
|
ID3D11Texture2D* aTexture)
|
|
: mCompositor(aCompositor)
|
|
, mFormat(aFormat)
|
|
, mFlags(TextureFlags::NO_FLAGS)
|
|
, mCurrentTile(0)
|
|
, mIsTiled(false)
|
|
, mIterating(false)
|
|
{
|
|
MOZ_COUNT_CTOR(DataTextureSourceD3D11);
|
|
|
|
mTexture = aTexture;
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
aTexture->GetDesc(&desc);
|
|
|
|
mSize = IntSize(desc.Width, desc.Height);
|
|
}
|
|
|
|
|
|
|
|
DataTextureSourceD3D11::~DataTextureSourceD3D11()
|
|
{
|
|
MOZ_COUNT_DTOR(DataTextureSourceD3D11);
|
|
}
|
|
|
|
|
|
template<typename T> // ID3D10Texture2D or ID3D11Texture2D
|
|
static bool LockD3DTexture(T* aTexture)
|
|
{
|
|
MOZ_ASSERT(aTexture);
|
|
RefPtr<IDXGIKeyedMutex> mutex;
|
|
aTexture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex));
|
|
// Textures created by the DXVA decoders don't have a mutex for synchronization
|
|
if (mutex) {
|
|
HRESULT hr = mutex->AcquireSync(0, 10000);
|
|
if (hr == WAIT_TIMEOUT) {
|
|
MOZ_CRASH();
|
|
}
|
|
|
|
if (FAILED(hr)) {
|
|
NS_WARNING("Failed to lock the texture");
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
template<typename T> // ID3D10Texture2D or ID3D11Texture2D
|
|
static void UnlockD3DTexture(T* aTexture)
|
|
{
|
|
MOZ_ASSERT(aTexture);
|
|
RefPtr<IDXGIKeyedMutex> mutex;
|
|
aTexture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex));
|
|
if (mutex) {
|
|
HRESULT hr = mutex->ReleaseSync(0);
|
|
if (FAILED(hr)) {
|
|
NS_WARNING("Failed to unlock the texture");
|
|
}
|
|
}
|
|
}
|
|
|
|
already_AddRefed<TextureHost>
|
|
CreateTextureHostD3D11(const SurfaceDescriptor& aDesc,
|
|
ISurfaceAllocator* aDeallocator,
|
|
TextureFlags aFlags)
|
|
{
|
|
RefPtr<TextureHost> result;
|
|
switch (aDesc.type()) {
|
|
case SurfaceDescriptor::TSurfaceDescriptorShmem:
|
|
case SurfaceDescriptor::TSurfaceDescriptorMemory: {
|
|
result = CreateBackendIndependentTextureHost(aDesc, aDeallocator, aFlags);
|
|
break;
|
|
}
|
|
case SurfaceDescriptor::TSurfaceDescriptorD3D10: {
|
|
result = new DXGITextureHostD3D11(aFlags,
|
|
aDesc.get_SurfaceDescriptorD3D10());
|
|
break;
|
|
}
|
|
case SurfaceDescriptor::TSurfaceDescriptorDXGIYCbCr: {
|
|
result = new DXGIYCbCrTextureHostD3D11(aFlags,
|
|
aDesc.get_SurfaceDescriptorDXGIYCbCr());
|
|
break;
|
|
}
|
|
default: {
|
|
NS_WARNING("Unsupported SurfaceDescriptor type");
|
|
}
|
|
}
|
|
return result.forget();
|
|
}
|
|
|
|
TextureClientD3D11::TextureClientD3D11(ISurfaceAllocator* aAllocator,
|
|
gfx::SurfaceFormat aFormat,
|
|
TextureFlags aFlags)
|
|
: TextureClient(aAllocator, aFlags)
|
|
, mFormat(aFormat)
|
|
, mIsLocked(false)
|
|
, mNeedsClear(false)
|
|
, mNeedsClearWhite(false)
|
|
{}
|
|
|
|
TextureClientD3D11::~TextureClientD3D11()
|
|
{
|
|
if (mActor) {
|
|
if (mTexture) {
|
|
KeepUntilFullDeallocation(MakeUnique<TKeepAlive<ID3D11Texture2D>>(mTexture));
|
|
} else if (mTexture10) {
|
|
KeepUntilFullDeallocation(MakeUnique<TKeepAlive<ID3D10Texture2D>>(mTexture10));
|
|
}
|
|
}
|
|
#ifdef DEBUG
|
|
// An Azure DrawTarget needs to be locked when it gets nullptr'ed as this is
|
|
// when it calls EndDraw. This EndDraw should not execute anything so it
|
|
// shouldn't -really- need the lock but the debug layer chokes on this.
|
|
if (mDrawTarget) {
|
|
MOZ_ASSERT(!mIsLocked);
|
|
MOZ_ASSERT(mTexture || mTexture10);
|
|
MOZ_ASSERT(mDrawTarget->refCount() == 1);
|
|
if (mTexture) {
|
|
LockD3DTexture(mTexture.get());
|
|
} else {
|
|
LockD3DTexture(mTexture10.get());
|
|
}
|
|
mDrawTarget = nullptr;
|
|
if (mTexture) {
|
|
UnlockD3DTexture(mTexture.get());
|
|
} else {
|
|
UnlockD3DTexture(mTexture10.get());
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
// static
|
|
already_AddRefed<TextureClientD3D11>
|
|
TextureClientD3D11::Create(ISurfaceAllocator* aAllocator,
|
|
gfx::SurfaceFormat aFormat,
|
|
TextureFlags aFlags,
|
|
ID3D11Texture2D* aTexture,
|
|
gfx::IntSize aSize)
|
|
{
|
|
RefPtr<TextureClientD3D11> texture = new TextureClientD3D11(aAllocator,
|
|
aFormat,
|
|
aFlags);
|
|
texture->mTexture = aTexture;
|
|
texture->mSize = aSize;
|
|
return texture.forget();
|
|
}
|
|
|
|
already_AddRefed<TextureClient>
|
|
TextureClientD3D11::CreateSimilar(TextureFlags aFlags,
|
|
TextureAllocationFlags aAllocFlags) const
|
|
{
|
|
RefPtr<TextureClient> tex = new TextureClientD3D11(mAllocator, mFormat,
|
|
mFlags | aFlags);
|
|
|
|
if (!tex->AllocateForSurface(mSize, aAllocFlags)) {
|
|
return nullptr;
|
|
}
|
|
|
|
return tex.forget();
|
|
}
|
|
|
|
void
|
|
TextureClientD3D11::SyncWithObject(SyncObject* aSyncObject)
|
|
{
|
|
if (!aSyncObject) {
|
|
return;
|
|
}
|
|
|
|
MOZ_ASSERT(aSyncObject->GetSyncType() == SyncObject::SyncType::D3D11);
|
|
|
|
SyncObjectD3D11* sync = static_cast<SyncObjectD3D11*>(aSyncObject);
|
|
|
|
if (mTexture) {
|
|
sync->RegisterTexture(mTexture);
|
|
} else {
|
|
sync->RegisterTexture(mTexture10);
|
|
}
|
|
}
|
|
|
|
bool
|
|
TextureClientD3D11::Lock(OpenMode aMode)
|
|
{
|
|
if (!IsAllocated()) {
|
|
return false;
|
|
}
|
|
MOZ_ASSERT(!mIsLocked, "The Texture is already locked!");
|
|
|
|
if (mTexture) {
|
|
MOZ_ASSERT(!mTexture10);
|
|
mIsLocked = LockD3DTexture(mTexture.get());
|
|
} else {
|
|
MOZ_ASSERT(!mTexture);
|
|
mIsLocked = LockD3DTexture(mTexture10.get());
|
|
}
|
|
if (!mIsLocked) {
|
|
return false;
|
|
}
|
|
|
|
// Make sure that successful write-lock means we will have a DrawTarget to
|
|
// write into.
|
|
if (aMode & OpenMode::OPEN_WRITE) {
|
|
mDrawTarget = BorrowDrawTarget();
|
|
if (!mDrawTarget) {
|
|
Unlock();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (mNeedsClear) {
|
|
mDrawTarget = BorrowDrawTarget();
|
|
if (!mDrawTarget) {
|
|
Unlock();
|
|
return false;
|
|
}
|
|
mDrawTarget->ClearRect(Rect(0, 0, GetSize().width, GetSize().height));
|
|
mNeedsClear = false;
|
|
}
|
|
if (mNeedsClearWhite) {
|
|
mDrawTarget = BorrowDrawTarget();
|
|
if (!mDrawTarget) {
|
|
Unlock();
|
|
return false;
|
|
}
|
|
mDrawTarget->FillRect(Rect(0, 0, GetSize().width, GetSize().height), ColorPattern(Color(1.0, 1.0, 1.0, 1.0)));
|
|
mNeedsClearWhite = false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void
|
|
TextureClientD3D11::Unlock()
|
|
{
|
|
MOZ_ASSERT(mIsLocked, "Unlocked called while the texture is not locked!");
|
|
if (!mIsLocked) {
|
|
return;
|
|
}
|
|
|
|
if (mDrawTarget) {
|
|
// see the comment on TextureClient::BorrowDrawTarget.
|
|
// This DrawTarget is internal to the TextureClient and is only exposed to the
|
|
// outside world between Lock() and Unlock(). This assertion checks that no outside
|
|
// reference remains by the time Unlock() is called.
|
|
MOZ_ASSERT(mDrawTarget->refCount() == 1);
|
|
mDrawTarget->Flush();
|
|
}
|
|
|
|
if (mReadbackSink && mTexture10) {
|
|
ID3D10Device* device = gfxWindowsPlatform::GetPlatform()->GetD3D10Device();
|
|
|
|
D3D10_TEXTURE2D_DESC desc;
|
|
mTexture10->GetDesc(&desc);
|
|
desc.BindFlags = 0;
|
|
desc.Usage = D3D10_USAGE_STAGING;
|
|
desc.CPUAccessFlags = D3D10_CPU_ACCESS_READ;
|
|
desc.MiscFlags = 0;
|
|
|
|
RefPtr<ID3D10Texture2D> tex;
|
|
HRESULT hr = device->CreateTexture2D(&desc, nullptr, byRef(tex));
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
device->CopyResource(tex, mTexture10);
|
|
gfxWindowsPlatform::GetPlatform()->GetReadbackManager()->PostTask(tex, mReadbackSink);
|
|
} else {
|
|
gfxCriticalError(CriticalLog::DefaultOptions(Factory::ReasonableSurfaceSize(mSize))) << "[D3D11] CreateTexture2D failure " << mSize << " Code: " << gfx::hexa(hr);
|
|
mReadbackSink->ProcessReadback(nullptr);
|
|
}
|
|
}
|
|
|
|
// The DrawTarget is created only once, and is only usable between calls
|
|
// to Lock and Unlock.
|
|
if (mTexture) {
|
|
UnlockD3DTexture(mTexture.get());
|
|
} else {
|
|
UnlockD3DTexture(mTexture10.get());
|
|
}
|
|
mIsLocked = false;
|
|
}
|
|
|
|
DrawTarget*
|
|
TextureClientD3D11::BorrowDrawTarget()
|
|
{
|
|
MOZ_ASSERT(mIsLocked, "Calling TextureClient::BorrowDrawTarget without locking :(");
|
|
|
|
if (!mIsLocked || (!mTexture && !mTexture10)) {
|
|
gfxCriticalError() << "Attempted to borrow a DrawTarget without locking the texture.";
|
|
return nullptr;
|
|
}
|
|
|
|
if (mDrawTarget) {
|
|
return mDrawTarget;
|
|
}
|
|
|
|
// This may return a null DrawTarget
|
|
if (mTexture) {
|
|
mDrawTarget = Factory::CreateDrawTargetForD3D11Texture(mTexture, mFormat);
|
|
} else
|
|
{
|
|
MOZ_ASSERT(mTexture10);
|
|
mDrawTarget = Factory::CreateDrawTargetForD3D10Texture(mTexture10, mFormat);
|
|
}
|
|
if (!mDrawTarget) {
|
|
gfxWarning() << "Invalid draw target for borrowing";
|
|
}
|
|
return mDrawTarget;
|
|
}
|
|
|
|
static const GUID sD3D11TextureUsage =
|
|
{ 0xd89275b0, 0x6c7d, 0x4038, { 0xb5, 0xfa, 0x4d, 0x87, 0x16, 0xd5, 0xcc, 0x4e } };
|
|
|
|
/* This class gets its lifetime tied to a D3D texture
|
|
* and increments memory usage on construction and decrements
|
|
* on destruction */
|
|
class TextureMemoryMeasurer : public IUnknown
|
|
{
|
|
public:
|
|
TextureMemoryMeasurer(size_t aMemoryUsed)
|
|
{
|
|
mMemoryUsed = aMemoryUsed;
|
|
gfxWindowsPlatform::sD3D11MemoryUsed += mMemoryUsed;
|
|
mRefCnt = 0;
|
|
}
|
|
STDMETHODIMP_(ULONG) AddRef() {
|
|
mRefCnt++;
|
|
return mRefCnt;
|
|
}
|
|
STDMETHODIMP QueryInterface(REFIID riid,
|
|
void **ppvObject)
|
|
{
|
|
IUnknown *punk = nullptr;
|
|
if (riid == IID_IUnknown) {
|
|
punk = this;
|
|
}
|
|
*ppvObject = punk;
|
|
if (punk) {
|
|
punk->AddRef();
|
|
return S_OK;
|
|
} else {
|
|
return E_NOINTERFACE;
|
|
}
|
|
}
|
|
|
|
STDMETHODIMP_(ULONG) Release() {
|
|
int refCnt = --mRefCnt;
|
|
if (refCnt == 0) {
|
|
gfxWindowsPlatform::sD3D11MemoryUsed -= mMemoryUsed;
|
|
delete this;
|
|
}
|
|
return refCnt;
|
|
}
|
|
private:
|
|
int mRefCnt;
|
|
int mMemoryUsed;
|
|
};
|
|
|
|
bool
|
|
TextureClientD3D11::AllocateForSurface(gfx::IntSize aSize, TextureAllocationFlags aFlags)
|
|
{
|
|
mSize = aSize;
|
|
HRESULT hr;
|
|
|
|
if (mFormat == SurfaceFormat::A8) {
|
|
// Currently TextureClientD3D11 does not support A8 surfaces. Fallback.
|
|
return false;
|
|
}
|
|
|
|
gfxWindowsPlatform* windowsPlatform = gfxWindowsPlatform::GetPlatform();
|
|
ID3D11Device* d3d11device = windowsPlatform->GetD3D11ContentDevice();
|
|
bool haveD3d11Backend = windowsPlatform->GetContentBackend() == BackendType::DIRECT2D1_1;
|
|
|
|
if (haveD3d11Backend) {
|
|
MOZ_ASSERT(d3d11device != nullptr);
|
|
|
|
CD3D11_TEXTURE2D_DESC newDesc(mFormat == SurfaceFormat::A8 ? DXGI_FORMAT_R8_UNORM : DXGI_FORMAT_B8G8R8A8_UNORM,
|
|
aSize.width, aSize.height, 1, 1,
|
|
D3D11_BIND_RENDER_TARGET | D3D11_BIND_SHADER_RESOURCE);
|
|
|
|
newDesc.MiscFlags = D3D11_RESOURCE_MISC_SHARED;
|
|
|
|
hr = d3d11device->CreateTexture2D(&newDesc, nullptr, byRef(mTexture));
|
|
if (FAILED(hr)) {
|
|
gfxCriticalError(CriticalLog::DefaultOptions(Factory::ReasonableSurfaceSize(aSize))) << "[D3D11] 2 CreateTexture2D failure " << aSize << " Code: " << gfx::hexa(hr);
|
|
return false;
|
|
}
|
|
mTexture->SetPrivateDataInterface(sD3D11TextureUsage,
|
|
new TextureMemoryMeasurer(newDesc.Width * newDesc.Height *
|
|
(mFormat == SurfaceFormat::A8 ?
|
|
1 : 4)));
|
|
} else
|
|
{
|
|
ID3D10Device* device = gfxWindowsPlatform::GetPlatform()->GetD3D10Device();
|
|
|
|
CD3D10_TEXTURE2D_DESC newDesc(DXGI_FORMAT_B8G8R8A8_UNORM,
|
|
aSize.width, aSize.height, 1, 1,
|
|
D3D10_BIND_RENDER_TARGET | D3D10_BIND_SHADER_RESOURCE);
|
|
|
|
newDesc.MiscFlags = D3D10_RESOURCE_MISC_SHARED;
|
|
|
|
hr = device->CreateTexture2D(&newDesc, nullptr, byRef(mTexture10));
|
|
if (FAILED(hr)) {
|
|
gfxCriticalError(CriticalLog::DefaultOptions(Factory::ReasonableSurfaceSize(aSize))) << "[D3D10] 2 CreateTexture2D failure " << aSize << " Code: " << gfx::hexa(hr);
|
|
return false;
|
|
}
|
|
mTexture10->SetPrivateDataInterface(sD3D11TextureUsage,
|
|
new TextureMemoryMeasurer(newDesc.Width * newDesc.Height *
|
|
(mFormat == SurfaceFormat::A8 ?
|
|
1 : 4)));
|
|
|
|
}
|
|
|
|
// Defer clearing to the next time we lock to avoid an extra (expensive) lock.
|
|
mNeedsClear = aFlags & ALLOC_CLEAR_BUFFER;
|
|
mNeedsClearWhite = aFlags & ALLOC_CLEAR_BUFFER_WHITE;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
TextureClientD3D11::ToSurfaceDescriptor(SurfaceDescriptor& aOutDescriptor)
|
|
{
|
|
if (!IsAllocated()) {
|
|
return false;
|
|
}
|
|
RefPtr<IDXGIResource> resource;
|
|
if (mTexture) {
|
|
mTexture->QueryInterface((IDXGIResource**)byRef(resource));
|
|
} else {
|
|
mTexture10->QueryInterface((IDXGIResource**)byRef(resource));
|
|
}
|
|
|
|
HANDLE sharedHandle;
|
|
HRESULT hr = resource->GetSharedHandle(&sharedHandle);
|
|
|
|
if (FAILED(hr)) {
|
|
LOGD3D11("Error getting shared handle for texture.");
|
|
return false;
|
|
}
|
|
|
|
aOutDescriptor = SurfaceDescriptorD3D10((WindowsHandle)sharedHandle, mFormat, mSize);
|
|
return true;
|
|
}
|
|
|
|
DXGIYCbCrTextureClient::DXGIYCbCrTextureClient(ISurfaceAllocator* aAllocator,
|
|
TextureFlags aFlags)
|
|
: TextureClient(aAllocator, aFlags)
|
|
, mIsLocked(false)
|
|
{
|
|
MOZ_COUNT_CTOR(DXGIYCbCrTextureClient);
|
|
}
|
|
|
|
class YCbCrKeepAliveD3D11 : public KeepAlive
|
|
{
|
|
public:
|
|
YCbCrKeepAliveD3D11(RefPtr<IUnknown> aTextures[3])
|
|
{
|
|
mTextures[0] = aTextures[0];
|
|
mTextures[1] = aTextures[1];
|
|
mTextures[2] = aTextures[2];
|
|
}
|
|
|
|
protected:
|
|
RefPtr<IUnknown> mTextures[3];
|
|
};
|
|
|
|
DXGIYCbCrTextureClient::~DXGIYCbCrTextureClient()
|
|
{
|
|
if (mHoldRefs[0] && mActor) {
|
|
KeepUntilFullDeallocation(MakeUnique<YCbCrKeepAliveD3D11>(mHoldRefs), true);
|
|
}
|
|
MOZ_COUNT_DTOR(DXGIYCbCrTextureClient);
|
|
}
|
|
|
|
// static
|
|
already_AddRefed<DXGIYCbCrTextureClient>
|
|
DXGIYCbCrTextureClient::Create(ISurfaceAllocator* aAllocator,
|
|
TextureFlags aFlags,
|
|
IUnknown* aTextureY,
|
|
IUnknown* aTextureCb,
|
|
IUnknown* aTextureCr,
|
|
HANDLE aHandleY,
|
|
HANDLE aHandleCb,
|
|
HANDLE aHandleCr,
|
|
const gfx::IntSize& aSize,
|
|
const gfx::IntSize& aSizeY,
|
|
const gfx::IntSize& aSizeCbCr)
|
|
{
|
|
if (!aHandleY || !aHandleCb || !aHandleCr ||
|
|
!aTextureY || !aTextureCb || !aTextureCr) {
|
|
return nullptr;
|
|
}
|
|
|
|
RefPtr<DXGIYCbCrTextureClient> texture =
|
|
new DXGIYCbCrTextureClient(aAllocator, aFlags);
|
|
texture->mHandles[0] = aHandleY;
|
|
texture->mHandles[1] = aHandleCb;
|
|
texture->mHandles[2] = aHandleCr;
|
|
texture->mHoldRefs[0] = aTextureY;
|
|
texture->mHoldRefs[1] = aTextureCb;
|
|
texture->mHoldRefs[2] = aTextureCr;
|
|
texture->mSize = aSize;
|
|
texture->mSizeY = aSizeY;
|
|
texture->mSizeCbCr = aSizeCbCr;
|
|
return texture.forget();
|
|
}
|
|
|
|
bool
|
|
DXGIYCbCrTextureClient::Lock(OpenMode)
|
|
{
|
|
MOZ_ASSERT(!mIsLocked);
|
|
if (!IsValid()) {
|
|
return false;
|
|
}
|
|
mIsLocked = true;
|
|
return true;
|
|
}
|
|
|
|
void
|
|
DXGIYCbCrTextureClient::Unlock()
|
|
{
|
|
MOZ_ASSERT(mIsLocked, "Unlock called while the texture is not locked!");
|
|
mIsLocked = false;
|
|
}
|
|
|
|
bool
|
|
DXGIYCbCrTextureClient::ToSurfaceDescriptor(SurfaceDescriptor& aOutDescriptor)
|
|
{
|
|
MOZ_ASSERT(IsValid());
|
|
if (!IsAllocated()) {
|
|
return false;
|
|
}
|
|
|
|
aOutDescriptor = SurfaceDescriptorDXGIYCbCr((WindowsHandle)mHandles[0], (WindowsHandle)mHandles[1], (WindowsHandle)mHandles[2],
|
|
GetSize(), mSizeY, mSizeCbCr);
|
|
return true;
|
|
}
|
|
|
|
DXGITextureHostD3D11::DXGITextureHostD3D11(TextureFlags aFlags,
|
|
const SurfaceDescriptorD3D10& aDescriptor)
|
|
: TextureHost(aFlags)
|
|
, mSize(aDescriptor.size())
|
|
, mHandle(aDescriptor.handle())
|
|
, mFormat(aDescriptor.format())
|
|
, mIsLocked(false)
|
|
{
|
|
}
|
|
|
|
bool
|
|
DXGITextureHostD3D11::OpenSharedHandle()
|
|
{
|
|
if (!GetDevice()) {
|
|
return false;
|
|
}
|
|
|
|
HRESULT hr = GetDevice()->OpenSharedResource((HANDLE)mHandle,
|
|
__uuidof(ID3D11Texture2D),
|
|
(void**)(ID3D11Texture2D**)byRef(mTexture));
|
|
if (FAILED(hr)) {
|
|
NS_WARNING("Failed to open shared texture");
|
|
return false;
|
|
}
|
|
|
|
D3D11_TEXTURE2D_DESC desc;
|
|
mTexture->GetDesc(&desc);
|
|
mSize = IntSize(desc.Width, desc.Height);
|
|
return true;
|
|
}
|
|
|
|
ID3D11Device*
|
|
DXGITextureHostD3D11::GetDevice()
|
|
{
|
|
return gfxWindowsPlatform::GetPlatform()->GetD3D11Device();
|
|
}
|
|
|
|
void
|
|
DXGITextureHostD3D11::SetCompositor(Compositor* aCompositor)
|
|
{
|
|
MOZ_ASSERT(aCompositor);
|
|
mCompositor = static_cast<CompositorD3D11*>(aCompositor);
|
|
}
|
|
|
|
bool
|
|
DXGITextureHostD3D11::Lock()
|
|
{
|
|
if (!GetDevice()) {
|
|
NS_WARNING("trying to lock a TextureHost without a D3D device");
|
|
return false;
|
|
}
|
|
if (!mTextureSource) {
|
|
if (!mTexture && !OpenSharedHandle()) {
|
|
return false;
|
|
}
|
|
|
|
mTextureSource = new DataTextureSourceD3D11(mFormat, mCompositor, mTexture);
|
|
}
|
|
|
|
mIsLocked = LockD3DTexture(mTextureSource->GetD3D11Texture());
|
|
|
|
return mIsLocked;
|
|
}
|
|
|
|
void
|
|
DXGITextureHostD3D11::Unlock()
|
|
{
|
|
MOZ_ASSERT(mIsLocked);
|
|
UnlockD3DTexture(mTextureSource->GetD3D11Texture());
|
|
mIsLocked = false;
|
|
}
|
|
|
|
bool
|
|
DXGITextureHostD3D11::BindTextureSource(CompositableTextureSourceRef& aTexture)
|
|
{
|
|
MOZ_ASSERT(mIsLocked);
|
|
// If Lock was successful we must have a valid TextureSource.
|
|
MOZ_ASSERT(mTextureSource);
|
|
aTexture = mTextureSource;
|
|
return !!aTexture;
|
|
}
|
|
|
|
DXGIYCbCrTextureHostD3D11::DXGIYCbCrTextureHostD3D11(TextureFlags aFlags,
|
|
const SurfaceDescriptorDXGIYCbCr& aDescriptor)
|
|
: TextureHost(aFlags)
|
|
, mSize(aDescriptor.size())
|
|
, mIsLocked(false)
|
|
{
|
|
mHandles[0] = aDescriptor.handleY();
|
|
mHandles[1] = aDescriptor.handleCb();
|
|
mHandles[2] = aDescriptor.handleCr();
|
|
}
|
|
|
|
bool
|
|
DXGIYCbCrTextureHostD3D11::OpenSharedHandle()
|
|
{
|
|
if (!GetDevice()) {
|
|
return false;
|
|
}
|
|
|
|
RefPtr<ID3D11Texture2D> textures[3];
|
|
|
|
HRESULT hr = GetDevice()->OpenSharedResource((HANDLE)mHandles[0],
|
|
__uuidof(ID3D11Texture2D),
|
|
(void**)(ID3D11Texture2D**)byRef(textures[0]));
|
|
if (FAILED(hr)) {
|
|
NS_WARNING("Failed to open shared texture for Y Plane");
|
|
return false;
|
|
}
|
|
|
|
hr = GetDevice()->OpenSharedResource((HANDLE)mHandles[1],
|
|
__uuidof(ID3D11Texture2D),
|
|
(void**)(ID3D11Texture2D**)byRef(textures[1]));
|
|
if (FAILED(hr)) {
|
|
NS_WARNING("Failed to open shared texture for Cb Plane");
|
|
return false;
|
|
}
|
|
|
|
hr = GetDevice()->OpenSharedResource((HANDLE)mHandles[2],
|
|
__uuidof(ID3D11Texture2D),
|
|
(void**)(ID3D11Texture2D**)byRef(textures[2]));
|
|
if (FAILED(hr)) {
|
|
NS_WARNING("Failed to open shared texture for Cr Plane");
|
|
return false;
|
|
}
|
|
|
|
mTextures[0] = textures[0].forget();
|
|
mTextures[1] = textures[1].forget();
|
|
mTextures[2] = textures[2].forget();
|
|
|
|
return true;
|
|
}
|
|
|
|
ID3D11Device*
|
|
DXGIYCbCrTextureHostD3D11::GetDevice()
|
|
{
|
|
return gfxWindowsPlatform::GetPlatform()->GetD3D11Device();
|
|
}
|
|
|
|
void
|
|
DXGIYCbCrTextureHostD3D11::SetCompositor(Compositor* aCompositor)
|
|
{
|
|
MOZ_ASSERT(aCompositor);
|
|
mCompositor = static_cast<CompositorD3D11*>(aCompositor);
|
|
}
|
|
|
|
bool
|
|
DXGIYCbCrTextureHostD3D11::Lock()
|
|
{
|
|
if (!GetDevice()) {
|
|
NS_WARNING("trying to lock a TextureHost without a D3D device");
|
|
return false;
|
|
}
|
|
if (!mTextureSources[0]) {
|
|
if (!mTextures[0] && !OpenSharedHandle()) {
|
|
return false;
|
|
}
|
|
|
|
MOZ_ASSERT(mTextures[1] && mTextures[2]);
|
|
|
|
mTextureSources[0] = new DataTextureSourceD3D11(SurfaceFormat::A8, mCompositor, mTextures[0]);
|
|
mTextureSources[1] = new DataTextureSourceD3D11(SurfaceFormat::A8, mCompositor, mTextures[1]);
|
|
mTextureSources[2] = new DataTextureSourceD3D11(SurfaceFormat::A8, mCompositor, mTextures[2]);
|
|
mTextureSources[0]->SetNextSibling(mTextureSources[1]);
|
|
mTextureSources[1]->SetNextSibling(mTextureSources[2]);
|
|
}
|
|
|
|
mIsLocked = LockD3DTexture(mTextureSources[0]->GetD3D11Texture()) &&
|
|
LockD3DTexture(mTextureSources[1]->GetD3D11Texture()) &&
|
|
LockD3DTexture(mTextureSources[2]->GetD3D11Texture());
|
|
|
|
return mIsLocked;
|
|
}
|
|
|
|
void
|
|
DXGIYCbCrTextureHostD3D11::Unlock()
|
|
{
|
|
MOZ_ASSERT(mIsLocked);
|
|
UnlockD3DTexture(mTextureSources[0]->GetD3D11Texture());
|
|
UnlockD3DTexture(mTextureSources[1]->GetD3D11Texture());
|
|
UnlockD3DTexture(mTextureSources[2]->GetD3D11Texture());
|
|
mIsLocked = false;
|
|
}
|
|
|
|
bool
|
|
DXGIYCbCrTextureHostD3D11::BindTextureSource(CompositableTextureSourceRef& aTexture)
|
|
{
|
|
MOZ_ASSERT(mIsLocked);
|
|
// If Lock was successful we must have a valid TextureSource.
|
|
MOZ_ASSERT(mTextureSources[0] && mTextureSources[1] && mTextureSources[2]);
|
|
aTexture = mTextureSources[0].get();
|
|
return !!aTexture;
|
|
}
|
|
|
|
bool
|
|
DataTextureSourceD3D11::Update(DataSourceSurface* aSurface,
|
|
nsIntRegion* aDestRegion,
|
|
IntPoint* aSrcOffset)
|
|
{
|
|
// Incremental update with a source offset is only used on Mac so it is not
|
|
// clear that we ever will need to support it for D3D.
|
|
MOZ_ASSERT(!aSrcOffset);
|
|
MOZ_ASSERT(aSurface);
|
|
|
|
HRESULT hr;
|
|
|
|
if (!mCompositor || !mCompositor->GetDevice()) {
|
|
return false;
|
|
}
|
|
|
|
uint32_t bpp = BytesPerPixel(aSurface->GetFormat());
|
|
DXGI_FORMAT dxgiFormat = SurfaceFormatToDXGIFormat(aSurface->GetFormat());
|
|
|
|
mSize = aSurface->GetSize();
|
|
mFormat = aSurface->GetFormat();
|
|
|
|
CD3D11_TEXTURE2D_DESC desc(dxgiFormat, mSize.width, mSize.height, 1, 1);
|
|
|
|
int32_t maxSize = mCompositor->GetMaxTextureSize();
|
|
if ((mSize.width <= maxSize && mSize.height <= maxSize) ||
|
|
(mFlags & TextureFlags::DISALLOW_BIGIMAGE)) {
|
|
|
|
if (mTexture) {
|
|
D3D11_TEXTURE2D_DESC currentDesc;
|
|
mTexture->GetDesc(¤tDesc);
|
|
|
|
// Make sure there's no size mismatch, if there is, recreate.
|
|
if (currentDesc.Width != mSize.width || currentDesc.Height != mSize.height ||
|
|
currentDesc.Format != dxgiFormat) {
|
|
mTexture = nullptr;
|
|
// Make sure we upload the whole surface.
|
|
aDestRegion = nullptr;
|
|
}
|
|
}
|
|
|
|
if (!mTexture) {
|
|
hr = mCompositor->GetDevice()->CreateTexture2D(&desc, nullptr, byRef(mTexture));
|
|
mIsTiled = false;
|
|
if (FAILED(hr) || !mTexture) {
|
|
Reset();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
DataSourceSurface::MappedSurface map;
|
|
if (!aSurface->Map(DataSourceSurface::MapType::READ, &map)) {
|
|
gfxCriticalError() << "Failed to map surface.";
|
|
Reset();
|
|
return false;
|
|
}
|
|
|
|
if (aDestRegion) {
|
|
nsIntRegionRectIterator iter(*aDestRegion);
|
|
const IntRect *iterRect;
|
|
while ((iterRect = iter.Next())) {
|
|
D3D11_BOX box;
|
|
box.front = 0;
|
|
box.back = 1;
|
|
box.left = iterRect->x;
|
|
box.top = iterRect->y;
|
|
box.right = iterRect->XMost();
|
|
box.bottom = iterRect->YMost();
|
|
|
|
void* data = map.mData + map.mStride * iterRect->y + BytesPerPixel(aSurface->GetFormat()) * iterRect->x;
|
|
|
|
mCompositor->GetDC()->UpdateSubresource(mTexture, 0, &box, data, map.mStride, map.mStride * mSize.height);
|
|
}
|
|
} else {
|
|
mCompositor->GetDC()->UpdateSubresource(mTexture, 0, nullptr, aSurface->GetData(),
|
|
aSurface->Stride(), aSurface->Stride() * mSize.height);
|
|
}
|
|
|
|
aSurface->Unmap();
|
|
} else {
|
|
mIsTiled = true;
|
|
uint32_t tileCount = GetRequiredTilesD3D11(mSize.width, maxSize) *
|
|
GetRequiredTilesD3D11(mSize.height, maxSize);
|
|
|
|
mTileTextures.resize(tileCount);
|
|
mTexture = nullptr;
|
|
|
|
for (uint32_t i = 0; i < tileCount; i++) {
|
|
IntRect tileRect = GetTileRect(i);
|
|
|
|
desc.Width = tileRect.width;
|
|
desc.Height = tileRect.height;
|
|
desc.Usage = D3D11_USAGE_IMMUTABLE;
|
|
|
|
D3D11_SUBRESOURCE_DATA initData;
|
|
initData.pSysMem = aSurface->GetData() +
|
|
tileRect.y * aSurface->Stride() +
|
|
tileRect.x * bpp;
|
|
initData.SysMemPitch = aSurface->Stride();
|
|
|
|
hr = mCompositor->GetDevice()->CreateTexture2D(&desc, &initData, byRef(mTileTextures[i]));
|
|
if (FAILED(hr) || !mTileTextures[i]) {
|
|
Reset();
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
ID3D11Texture2D*
|
|
DataTextureSourceD3D11::GetD3D11Texture() const
|
|
{
|
|
return mIterating ? mTileTextures[mCurrentTile]
|
|
: mTexture;
|
|
}
|
|
|
|
void
|
|
DataTextureSourceD3D11::Reset()
|
|
{
|
|
mTexture = nullptr;
|
|
mTileTextures.resize(0);
|
|
mIsTiled = false;
|
|
mSize.width = 0;
|
|
mSize.height = 0;
|
|
}
|
|
|
|
IntRect
|
|
DataTextureSourceD3D11::GetTileRect(uint32_t aIndex) const
|
|
{
|
|
return GetTileRectD3D11(aIndex, mSize, mCompositor->GetMaxTextureSize());
|
|
}
|
|
|
|
IntRect
|
|
DataTextureSourceD3D11::GetTileRect()
|
|
{
|
|
IntRect rect = GetTileRect(mCurrentTile);
|
|
return IntRect(rect.x, rect.y, rect.width, rect.height);
|
|
}
|
|
|
|
void
|
|
DataTextureSourceD3D11::SetCompositor(Compositor* aCompositor)
|
|
{
|
|
MOZ_ASSERT(aCompositor);
|
|
CompositorD3D11* d3dCompositor = static_cast<CompositorD3D11*>(aCompositor);
|
|
if (mCompositor && mCompositor != d3dCompositor) {
|
|
Reset();
|
|
}
|
|
mCompositor = d3dCompositor;
|
|
}
|
|
|
|
CompositingRenderTargetD3D11::CompositingRenderTargetD3D11(ID3D11Texture2D* aTexture,
|
|
const gfx::IntPoint& aOrigin)
|
|
: CompositingRenderTarget(aOrigin)
|
|
{
|
|
MOZ_ASSERT(aTexture);
|
|
|
|
mTexture = aTexture;
|
|
|
|
RefPtr<ID3D11Device> device;
|
|
mTexture->GetDevice(byRef(device));
|
|
|
|
HRESULT hr = device->CreateRenderTargetView(mTexture, nullptr, byRef(mRTView));
|
|
|
|
if (FAILED(hr)) {
|
|
LOGD3D11("Failed to create RenderTargetView.");
|
|
}
|
|
}
|
|
|
|
void
|
|
CompositingRenderTargetD3D11::BindRenderTarget(ID3D11DeviceContext* aContext)
|
|
{
|
|
if (mClearOnBind) {
|
|
FLOAT clear[] = { 0, 0, 0, 0 };
|
|
aContext->ClearRenderTargetView(mRTView, clear);
|
|
mClearOnBind = false;
|
|
}
|
|
ID3D11RenderTargetView* view = mRTView;
|
|
aContext->OMSetRenderTargets(1, &view, nullptr);
|
|
}
|
|
|
|
IntSize
|
|
CompositingRenderTargetD3D11::GetSize() const
|
|
{
|
|
return TextureSourceD3D11::GetSize();
|
|
}
|
|
|
|
SyncObjectD3D11::SyncObjectD3D11(SyncHandle aHandle)
|
|
{
|
|
MOZ_ASSERT(aHandle);
|
|
|
|
mHandle = aHandle;
|
|
}
|
|
|
|
void
|
|
SyncObjectD3D11::RegisterTexture(ID3D11Texture2D* aTexture)
|
|
{
|
|
mD3D11SyncedTextures.push_back(aTexture);
|
|
}
|
|
|
|
void
|
|
SyncObjectD3D11::RegisterTexture(ID3D10Texture2D* aTexture)
|
|
{
|
|
mD3D10SyncedTextures.push_back(aTexture);
|
|
}
|
|
|
|
void
|
|
SyncObjectD3D11::FinalizeFrame()
|
|
{
|
|
HRESULT hr;
|
|
|
|
if (!mD3D10Texture && mD3D10SyncedTextures.size()) {
|
|
ID3D10Device* device = gfxWindowsPlatform::GetPlatform()->GetD3D10Device();
|
|
|
|
hr = device->OpenSharedResource(mHandle, __uuidof(ID3D10Texture2D), (void**)(ID3D10Texture2D**)byRef(mD3D10Texture));
|
|
|
|
if (FAILED(hr) || !mD3D10Texture) {
|
|
gfxCriticalError() << "Failed to D3D10 OpenSharedResource for frame finalization: " << hexa(hr);
|
|
|
|
if (gfxWindowsPlatform::GetPlatform()->DidRenderingDeviceReset()) {
|
|
return;
|
|
}
|
|
|
|
MOZ_CRASH();
|
|
}
|
|
|
|
// test QI
|
|
RefPtr<IDXGIKeyedMutex> mutex;
|
|
hr = mD3D10Texture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex));
|
|
|
|
if (FAILED(hr) || !mutex) {
|
|
gfxCriticalError() << "Failed to get KeyedMutex: " << hexa(hr);
|
|
MOZ_CRASH();
|
|
}
|
|
}
|
|
|
|
if (!mD3D11Texture && mD3D11SyncedTextures.size()) {
|
|
ID3D11Device* device = gfxWindowsPlatform::GetPlatform()->GetD3D11ContentDevice();
|
|
|
|
hr = device->OpenSharedResource(mHandle, __uuidof(ID3D11Texture2D), (void**)(ID3D11Texture2D**)byRef(mD3D11Texture));
|
|
|
|
if (FAILED(hr) || !mD3D11Texture) {
|
|
gfxCriticalError() << "Failed to D3D11 OpenSharedResource for frame finalization: " << hexa(hr);
|
|
|
|
if (gfxWindowsPlatform::GetPlatform()->DidRenderingDeviceReset()) {
|
|
return;
|
|
}
|
|
|
|
MOZ_CRASH();
|
|
}
|
|
|
|
// test QI
|
|
RefPtr<IDXGIKeyedMutex> mutex;
|
|
hr = mD3D11Texture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex));
|
|
|
|
if (FAILED(hr) || !mutex) {
|
|
gfxCriticalError() << "Failed to get KeyedMutex: " << hexa(hr);
|
|
MOZ_CRASH();
|
|
}
|
|
}
|
|
|
|
if (mD3D10SyncedTextures.size()) {
|
|
RefPtr<IDXGIKeyedMutex> mutex;
|
|
hr = mD3D10Texture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex));
|
|
hr = mutex->AcquireSync(0, 20000);
|
|
|
|
if (hr == WAIT_TIMEOUT) {
|
|
if (gfxWindowsPlatform::GetPlatform()->DidRenderingDeviceReset()) {
|
|
gfxWarning() << "AcquireSync timed out because of device reset.";
|
|
return;
|
|
}
|
|
MOZ_CRASH();
|
|
}
|
|
|
|
D3D10_BOX box;
|
|
box.front = box.top = box.left = 0;
|
|
box.back = box.bottom = box.right = 1;
|
|
|
|
ID3D10Device* device = gfxWindowsPlatform::GetPlatform()->GetD3D10Device();
|
|
|
|
for (auto iter = mD3D10SyncedTextures.begin(); iter != mD3D10SyncedTextures.end(); iter++) {
|
|
device->CopySubresourceRegion(mD3D10Texture, 0, 0, 0, 0, *iter, 0, &box);
|
|
}
|
|
|
|
mutex->ReleaseSync(0);
|
|
|
|
mD3D10SyncedTextures.clear();
|
|
}
|
|
|
|
if (mD3D11SyncedTextures.size()) {
|
|
RefPtr<IDXGIKeyedMutex> mutex;
|
|
hr = mD3D11Texture->QueryInterface((IDXGIKeyedMutex**)byRef(mutex));
|
|
hr = mutex->AcquireSync(0, 20000);
|
|
|
|
if (hr == WAIT_TIMEOUT) {
|
|
if (gfxWindowsPlatform::GetPlatform()->DidRenderingDeviceReset()) {
|
|
gfxWarning() << "AcquireSync timed out because of device reset.";
|
|
return;
|
|
}
|
|
MOZ_CRASH();
|
|
}
|
|
|
|
D3D11_BOX box;
|
|
box.front = box.top = box.left = 0;
|
|
box.back = box.bottom = box.right = 1;
|
|
|
|
ID3D11Device* dev = gfxWindowsPlatform::GetPlatform()->GetD3D11ContentDevice();
|
|
|
|
if (!dev) {
|
|
if (gfxWindowsPlatform::GetPlatform()->DidRenderingDeviceReset()) {
|
|
return;
|
|
}
|
|
MOZ_CRASH();
|
|
}
|
|
|
|
RefPtr<ID3D11DeviceContext> ctx;
|
|
dev->GetImmediateContext(byRef(ctx));
|
|
|
|
for (auto iter = mD3D11SyncedTextures.begin(); iter != mD3D11SyncedTextures.end(); iter++) {
|
|
ctx->CopySubresourceRegion(mD3D11Texture, 0, 0, 0, 0, *iter, 0, &box);
|
|
}
|
|
|
|
mutex->ReleaseSync(0);
|
|
|
|
mD3D11SyncedTextures.clear();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|