diff -r 000000000000 -r 6474c204b198 gfx/layers/basic/TextureClientX11.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gfx/layers/basic/TextureClientX11.cpp Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,109 @@ +/* -*- 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/TextureClientX11.h" +#include "mozilla/layers/CompositableClient.h" +#include "mozilla/layers/CompositableForwarder.h" +#include "mozilla/layers/ISurfaceAllocator.h" +#include "mozilla/layers/ShadowLayerUtilsX11.h" +#include "mozilla/gfx/2D.h" +#include "gfxXlibSurface.h" +#include "gfx2DGlue.h" + +#include "mozilla/X11Util.h" +#include + +using namespace mozilla; +using namespace mozilla::gfx; +using namespace mozilla::layers; + +TextureClientX11::TextureClientX11(SurfaceFormat aFormat, TextureFlags aFlags) + : TextureClient(aFlags), + mFormat(aFormat), + mLocked(false) +{ + MOZ_COUNT_CTOR(TextureClientX11); +} + +TextureClientX11::~TextureClientX11() +{ + MOZ_COUNT_DTOR(TextureClientX11); +} + +bool +TextureClientX11::IsAllocated() const +{ + return !!mSurface; +} + +bool +TextureClientX11::Lock(OpenMode aMode) +{ + MOZ_ASSERT(!mLocked, "The TextureClient is already Locked!"); + mLocked = IsValid() && IsAllocated(); + return mLocked; +} + +void +TextureClientX11::Unlock() +{ + MOZ_ASSERT(mLocked, "The TextureClient is already Unlocked!"); + mLocked = false; + + if (mSurface) { + FinishX(DefaultXDisplay()); + } +} + +bool +TextureClientX11::ToSurfaceDescriptor(SurfaceDescriptor& aOutDescriptor) +{ + MOZ_ASSERT(IsValid()); + if (!mSurface) { + return false; + } + + aOutDescriptor = SurfaceDescriptorX11(mSurface); + return true; +} + +TextureClientData* +TextureClientX11::DropTextureData() +{ + MOZ_ASSERT(!(mFlags & TEXTURE_DEALLOCATE_CLIENT)); + return nullptr; +} + +bool +TextureClientX11::AllocateForSurface(IntSize aSize, TextureAllocationFlags aTextureFlags) +{ + MOZ_ASSERT(IsValid()); + //MOZ_ASSERT(mFormat != gfx::FORMAT_YUV, "This TextureClient cannot use YCbCr data"); + + gfxContentType contentType = ContentForFormat(mFormat); + nsRefPtr surface = gfxPlatform::GetPlatform()->CreateOffscreenSurface(aSize, contentType); + if (!surface || surface->GetType() != gfxSurfaceType::Xlib) { + NS_ERROR("creating Xlib surface failed!"); + return false; + } + + mSize = aSize; + mSurface = static_cast(surface.get()); + + // The host is always responsible for freeing the pixmap. + mSurface->ReleasePixmap(); + return true; +} + +TemporaryRef +TextureClientX11::GetAsDrawTarget() +{ + MOZ_ASSERT(IsValid()); + if (!mSurface) { + return nullptr; + } + + IntSize size = ToIntSize(mSurface->GetSize()); + return Factory::CreateDrawTargetForCairoSurface(mSurface->CairoSurface(), size); +}