mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
75c400493b
r=tbsaunde for accessible r=jmuizelaar for gfx r=roc for layout r=glandium for mozglue r=jduell for netwerk r=khuey for everything else This is a mechanical change made with sed. Later patches in this queue clean up the whitespace errors and so on.
136 lines
4.1 KiB
C++
136 lines
4.1 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* 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/TextureHost.h"
|
|
#include "mozilla/layers/LayersSurfaces.h"
|
|
#include "LayersLogging.h"
|
|
#include "nsPrintfCString.h"
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
// implemented in TextureOGL.cpp
|
|
TemporaryRef<TextureHost> CreateTextureHostOGL(SurfaceDescriptorType aDescriptorType,
|
|
uint32_t aTextureHostFlags,
|
|
uint32_t aTextureFlags);
|
|
// implemented in BasicCompositor.cpp
|
|
TemporaryRef<TextureHost> CreateBasicTextureHost(SurfaceDescriptorType aDescriptorType,
|
|
uint32_t aTextureHostFlags,
|
|
uint32_t aTextureFlags);
|
|
|
|
TemporaryRef<TextureHost> CreateTextureHostD3D9(SurfaceDescriptorType aDescriptorType,
|
|
uint32_t aTextureHostFlags,
|
|
uint32_t aTextureFlags)
|
|
{
|
|
NS_RUNTIMEABORT("not implemented");
|
|
return nullptr;
|
|
}
|
|
|
|
#ifdef XP_WIN
|
|
TemporaryRef<TextureHost> CreateTextureHostD3D11(SurfaceDescriptorType aDescriptorType,
|
|
uint32_t aTextureHostFlags,
|
|
uint32_t aTextureFlags);
|
|
#endif
|
|
|
|
/* static */ TemporaryRef<TextureHost>
|
|
TextureHost::CreateTextureHost(SurfaceDescriptorType aDescriptorType,
|
|
uint32_t aTextureHostFlags,
|
|
uint32_t aTextureFlags)
|
|
{
|
|
switch (Compositor::GetBackend()) {
|
|
case LAYERS_OPENGL:
|
|
return CreateTextureHostOGL(aDescriptorType,
|
|
aTextureHostFlags,
|
|
aTextureFlags);
|
|
case LAYERS_D3D9:
|
|
return CreateTextureHostD3D9(aDescriptorType,
|
|
aTextureHostFlags,
|
|
aTextureFlags);
|
|
#ifdef XP_WIN
|
|
case LAYERS_D3D11:
|
|
return CreateTextureHostD3D11(aDescriptorType,
|
|
aTextureHostFlags,
|
|
aTextureFlags);
|
|
#endif
|
|
case LAYERS_BASIC:
|
|
return CreateBasicTextureHost(aDescriptorType,
|
|
aTextureHostFlags,
|
|
aTextureFlags);
|
|
default:
|
|
MOZ_CRASH("Couldn't create texture host");
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
|
|
TextureHost::TextureHost()
|
|
: mFlags(0)
|
|
, mBuffer(nullptr)
|
|
, mFormat(gfx::FORMAT_UNKNOWN)
|
|
, mDeAllocator(nullptr)
|
|
{
|
|
MOZ_COUNT_CTOR(TextureHost);
|
|
}
|
|
|
|
TextureHost::~TextureHost()
|
|
{
|
|
if (mBuffer) {
|
|
if (!(mFlags & OwnByClient)) {
|
|
if (mDeAllocator) {
|
|
mDeAllocator->DestroySharedSurface(mBuffer);
|
|
} else {
|
|
MOZ_ASSERT(mBuffer->type() == SurfaceDescriptor::Tnull_t);
|
|
}
|
|
}
|
|
delete mBuffer;
|
|
}
|
|
MOZ_COUNT_DTOR(TextureHost);
|
|
}
|
|
|
|
void
|
|
TextureHost::Update(const SurfaceDescriptor& aImage,
|
|
nsIntRegion* aRegion,
|
|
nsIntPoint* aOffset)
|
|
{
|
|
UpdateImpl(aImage, aRegion, aOffset);
|
|
}
|
|
|
|
void
|
|
TextureHost::SwapTextures(const SurfaceDescriptor& aImage,
|
|
SurfaceDescriptor* aResult,
|
|
nsIntRegion* aRegion)
|
|
{
|
|
SwapTexturesImpl(aImage, aRegion);
|
|
|
|
MOZ_ASSERT(mBuffer, "trying to swap a non-buffered texture host?");
|
|
if (aResult) {
|
|
*aResult = *mBuffer;
|
|
}
|
|
*mBuffer = aImage;
|
|
}
|
|
|
|
#ifdef MOZ_LAYERS_HAVE_LOG
|
|
void
|
|
TextureSource::PrintInfo(nsACString& aTo, const char* aPrefix)
|
|
{
|
|
aTo += aPrefix;
|
|
aTo += nsPrintfCString("UnknownTextureSource (0x%p)", this);
|
|
}
|
|
|
|
void
|
|
TextureHost::PrintInfo(nsACString& aTo, const char* aPrefix)
|
|
{
|
|
aTo += aPrefix;
|
|
aTo += nsPrintfCString("%s (0x%p)", Name(), this);
|
|
AppendToString(aTo, GetSize(), " [size=", "]");
|
|
AppendToString(aTo, GetFormat(), " [format=", "]");
|
|
AppendToString(aTo, mFlags, " [flags=", "]");
|
|
}
|
|
#endif // MOZ_LAYERS_HAVE_LOG
|
|
|
|
|
|
} // namespace
|
|
} // namespace
|