Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "ImageClient.h"
|
|
|
|
#include <stdint.h> // for uint32_t
|
|
|
|
#include "ImageContainer.h" // for Image, PlanarYCbCrImage, etc
|
|
|
|
#include "ImageTypes.h" // for ImageFormat::PLANAR_YCBCR, etc
|
|
|
|
#include "SharedTextureImage.h" // for SharedTextureImage::Data, etc
|
|
|
|
#include "gfx2DGlue.h" // for ImageFormatToSurfaceFormat
|
|
|
|
#include "gfxASurface.h" // for gfxASurface, etc
|
|
|
|
#include "gfxPlatform.h" // for gfxPlatform
|
|
|
|
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
|
|
|
|
#include "mozilla/RefPtr.h" // for RefPtr, TemporaryRef
|
|
|
|
#include "mozilla/gfx/BaseSize.h" // for BaseSize
|
|
|
|
#include "mozilla/gfx/Point.h" // for IntSize
|
|
|
|
#include "mozilla/gfx/Types.h" // for SurfaceFormat, etc
|
|
|
|
#include "mozilla/layers/CompositableClient.h" // for CompositableClient
|
|
|
|
#include "mozilla/layers/CompositableForwarder.h"
|
|
|
|
#include "mozilla/layers/CompositorTypes.h" // for CompositableType, etc
|
|
|
|
#include "mozilla/layers/ISurfaceAllocator.h"
|
|
|
|
#include "mozilla/layers/LayersSurfaces.h" // for SurfaceDescriptor, etc
|
|
|
|
#include "mozilla/layers/ShadowLayers.h" // for ShadowLayerForwarder
|
2013-08-11 19:21:17 -07:00
|
|
|
#include "mozilla/layers/SharedPlanarYCbCrImage.h"
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/layers/SharedRGBImage.h"
|
|
|
|
#include "mozilla/layers/TextureClient.h" // for TextureClient, etc
|
2013-08-27 13:16:54 -07:00
|
|
|
#include "mozilla/layers/TextureClientOGL.h" // for SharedTextureClientOGL
|
2013-08-11 16:17:23 -07:00
|
|
|
#include "mozilla/mozalloc.h" // for operator delete, etc
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "nsDebug.h" // for NS_WARNING, NS_ASSERTION
|
|
|
|
#include "nsISupportsImpl.h" // for Image::Release, etc
|
|
|
|
#include "nsRect.h" // for nsIntRect
|
2014-01-07 08:20:11 -08:00
|
|
|
#include "mozilla/gfx/2D.h"
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
#include "GrallocImages.h"
|
|
|
|
#endif
|
|
|
|
|
2014-01-07 08:20:11 -08:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
/* static */ TemporaryRef<ImageClient>
|
2013-04-16 14:36:06 -07:00
|
|
|
ImageClient::CreateImageClient(CompositableType aCompositableHostType,
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
CompositableForwarder* aForwarder,
|
|
|
|
TextureFlags aFlags)
|
|
|
|
{
|
|
|
|
RefPtr<ImageClient> result = nullptr;
|
|
|
|
switch (aCompositableHostType) {
|
2013-07-30 02:59:51 -07:00
|
|
|
case COMPOSITABLE_IMAGE:
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
case BUFFER_IMAGE_SINGLE:
|
2013-07-30 02:59:51 -07:00
|
|
|
if (gfxPlatform::GetPlatform()->UseDeprecatedTextures()) {
|
|
|
|
result = new DeprecatedImageClientSingle(aForwarder, aFlags, BUFFER_IMAGE_SINGLE);
|
|
|
|
} else {
|
|
|
|
result = new ImageClientSingle(aForwarder, aFlags, COMPOSITABLE_IMAGE);
|
|
|
|
}
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
break;
|
|
|
|
case BUFFER_IMAGE_BUFFERED:
|
2013-07-30 02:59:51 -07:00
|
|
|
if (gfxPlatform::GetPlatform()->UseDeprecatedTextures()) {
|
|
|
|
result = new DeprecatedImageClientSingle(aForwarder, aFlags, BUFFER_IMAGE_BUFFERED);
|
|
|
|
} else {
|
2013-08-08 05:53:12 -07:00
|
|
|
result = new ImageClientBuffered(aForwarder, aFlags, COMPOSITABLE_IMAGE);
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
break;
|
|
|
|
case BUFFER_BRIDGE:
|
2013-05-03 10:34:29 -07:00
|
|
|
result = new ImageClientBridge(aForwarder, aFlags);
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
break;
|
|
|
|
case BUFFER_UNKNOWN:
|
|
|
|
result = nullptr;
|
|
|
|
break;
|
|
|
|
default:
|
2013-06-28 18:38:30 -07:00
|
|
|
MOZ_CRASH("unhandled program type");
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(result, "Failed to create ImageClient");
|
|
|
|
|
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
2013-07-30 02:59:51 -07:00
|
|
|
ImageClientSingle::ImageClientSingle(CompositableForwarder* aFwd,
|
|
|
|
TextureFlags aFlags,
|
|
|
|
CompositableType aType)
|
|
|
|
: ImageClient(aFwd, aType)
|
|
|
|
, mTextureFlags(aFlags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageClientBuffered::ImageClientBuffered(CompositableForwarder* aFwd,
|
|
|
|
TextureFlags aFlags,
|
|
|
|
CompositableType aType)
|
|
|
|
: ImageClientSingle(aFwd, aFlags, aType)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TextureInfo ImageClientSingle::GetTextureInfo() const
|
|
|
|
{
|
|
|
|
return TextureInfo(COMPOSITABLE_IMAGE);
|
|
|
|
}
|
|
|
|
|
2013-09-12 07:50:28 -07:00
|
|
|
void
|
2013-10-17 08:09:15 -07:00
|
|
|
ImageClientSingle::FlushAllImages(bool aExceptFront)
|
2013-09-12 07:50:28 -07:00
|
|
|
{
|
2013-10-17 08:09:15 -07:00
|
|
|
if (!aExceptFront && mFrontBuffer) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mFrontBuffer);
|
2013-09-12 07:50:28 -07:00
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-10-17 08:09:15 -07:00
|
|
|
ImageClientBuffered::FlushAllImages(bool aExceptFront)
|
2013-09-12 07:50:28 -07:00
|
|
|
{
|
2013-10-17 08:09:15 -07:00
|
|
|
if (!aExceptFront && mFrontBuffer) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mFrontBuffer);
|
2013-09-12 07:50:28 -07:00
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
}
|
|
|
|
if (mBackBuffer) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mBackBuffer);
|
2013-09-12 07:50:28 -07:00
|
|
|
mBackBuffer = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 02:59:51 -07:00
|
|
|
bool
|
|
|
|
ImageClientSingle::UpdateImage(ImageContainer* aContainer,
|
|
|
|
uint32_t aContentFlags)
|
2014-02-13 06:46:59 -08:00
|
|
|
{
|
|
|
|
bool isSwapped = false;
|
|
|
|
return UpdateImageInternal(aContainer, aContentFlags, &isSwapped);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ImageClientSingle::UpdateImageInternal(ImageContainer* aContainer,
|
|
|
|
uint32_t aContentFlags, bool* aIsSwapped)
|
2013-07-30 02:59:51 -07:00
|
|
|
{
|
|
|
|
AutoLockImage autoLock(aContainer);
|
2014-02-13 06:46:59 -08:00
|
|
|
*aIsSwapped = false;
|
2013-07-30 02:59:51 -07:00
|
|
|
|
|
|
|
Image *image = autoLock.GetImage();
|
|
|
|
if (!image) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mLastPaintedImageSerial == image->GetSerial()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-16 14:23:39 -08:00
|
|
|
if (image->AsSharedImage() && image->AsSharedImage()->GetTextureClient(this)) {
|
2013-07-30 02:59:51 -07:00
|
|
|
// fast path: no need to allocate and/or copy image data
|
2014-02-16 14:23:39 -08:00
|
|
|
RefPtr<TextureClient> texture = image->AsSharedImage()->GetTextureClient(this);
|
2013-07-30 02:59:51 -07:00
|
|
|
|
2013-09-06 02:03:12 -07:00
|
|
|
|
2013-07-30 02:59:51 -07:00
|
|
|
if (mFrontBuffer) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mFrontBuffer);
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
2013-08-08 05:53:12 -07:00
|
|
|
mFrontBuffer = texture;
|
2013-10-09 16:18:29 -07:00
|
|
|
if (!AddTextureClient(texture)) {
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-08 05:53:12 -07:00
|
|
|
GetForwarder()->UpdatedTexture(this, texture, nullptr);
|
|
|
|
GetForwarder()->UseTexture(this, texture);
|
2014-01-30 14:58:49 -08:00
|
|
|
} else if (image->GetFormat() == ImageFormat::PLANAR_YCBCR) {
|
2013-07-30 02:59:51 -07:00
|
|
|
PlanarYCbCrImage* ycbcr = static_cast<PlanarYCbCrImage*>(image);
|
2013-10-01 17:57:50 -07:00
|
|
|
const PlanarYCbCrData* data = ycbcr->GetData();
|
2013-07-30 02:59:51 -07:00
|
|
|
if (!data) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mFrontBuffer && mFrontBuffer->IsImmutable()) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mFrontBuffer);
|
2013-07-30 02:59:51 -07:00
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:39:55 -07:00
|
|
|
bool bufferCreated = false;
|
2013-07-30 02:59:51 -07:00
|
|
|
if (!mFrontBuffer) {
|
2014-01-10 11:06:16 -08:00
|
|
|
mFrontBuffer = CreateBufferTextureClient(gfx::SurfaceFormat::YUV, TEXTURE_FLAGS_DEFAULT);
|
2013-07-30 02:59:51 -07:00
|
|
|
gfx::IntSize ySize(data->mYSize.width, data->mYSize.height);
|
|
|
|
gfx::IntSize cbCrSize(data->mCbCrSize.width, data->mCbCrSize.height);
|
2013-08-04 00:46:17 -07:00
|
|
|
if (!mFrontBuffer->AsTextureClientYCbCr()->AllocateForYCbCr(ySize, cbCrSize, data->mStereoMode)) {
|
2013-07-30 02:59:51 -07:00
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-19 16:39:55 -07:00
|
|
|
bufferCreated = true;
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
|
|
|
|
2014-01-07 08:20:11 -08:00
|
|
|
if (!mFrontBuffer->Lock(OPEN_WRITE_ONLY)) {
|
2013-07-30 02:59:51 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool status = mFrontBuffer->AsTextureClientYCbCr()->UpdateYCbCr(*data);
|
|
|
|
mFrontBuffer->Unlock();
|
|
|
|
|
2013-08-19 16:39:55 -07:00
|
|
|
if (bufferCreated) {
|
2013-10-09 16:18:29 -07:00
|
|
|
if (!AddTextureClient(mFrontBuffer)) {
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-19 16:39:55 -07:00
|
|
|
}
|
|
|
|
|
2013-07-30 02:59:51 -07:00
|
|
|
if (status) {
|
|
|
|
GetForwarder()->UpdatedTexture(this, mFrontBuffer, nullptr);
|
|
|
|
GetForwarder()->UseTexture(this, mFrontBuffer);
|
|
|
|
} else {
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-30 14:58:49 -08:00
|
|
|
} else if (image->GetFormat() == ImageFormat::SHARED_TEXTURE) {
|
2013-08-27 13:16:54 -07:00
|
|
|
SharedTextureImage* sharedImage = static_cast<SharedTextureImage*>(image);
|
|
|
|
const SharedTextureImage::Data *data = sharedImage->GetData();
|
|
|
|
gfx::IntSize size = gfx::IntSize(image->GetSize().width, image->GetSize().height);
|
|
|
|
|
|
|
|
if (mFrontBuffer) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mFrontBuffer);
|
2013-08-27 13:16:54 -07:00
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<SharedTextureClientOGL> buffer = new SharedTextureClientOGL(mTextureFlags);
|
|
|
|
buffer->InitWith(data->mHandle, size, data->mShareType, data->mInverted);
|
|
|
|
mFrontBuffer = buffer;
|
2013-10-09 16:18:29 -07:00
|
|
|
if (!AddTextureClient(mFrontBuffer)) {
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-27 13:16:54 -07:00
|
|
|
|
|
|
|
GetForwarder()->UseTexture(this, mFrontBuffer);
|
2013-07-30 02:59:51 -07:00
|
|
|
} else {
|
2014-02-12 07:24:21 -08:00
|
|
|
RefPtr<gfx::SourceSurface> surface = image->GetAsSourceSurface();
|
2013-07-30 02:59:51 -07:00
|
|
|
MOZ_ASSERT(surface);
|
|
|
|
|
2014-02-12 07:24:21 -08:00
|
|
|
gfx::IntSize size = image->GetSize();
|
2013-08-03 10:29:18 -07:00
|
|
|
|
|
|
|
if (mFrontBuffer &&
|
|
|
|
(mFrontBuffer->IsImmutable() || mFrontBuffer->GetSize() != size)) {
|
2014-02-10 12:52:35 -08:00
|
|
|
GetForwarder()->RemoveTextureFromCompositable(this, mFrontBuffer);
|
2013-07-30 02:59:51 -07:00
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-08-19 16:39:55 -07:00
|
|
|
bool bufferCreated = false;
|
2013-07-30 02:59:51 -07:00
|
|
|
if (!mFrontBuffer) {
|
2013-09-24 13:45:13 -07:00
|
|
|
gfxImageFormat format
|
2014-02-12 07:24:21 -08:00
|
|
|
= gfxPlatform::GetPlatform()->OptimalFormatForContent(gfx::ContentForFormat(surface->GetFormat()));
|
2014-01-07 08:20:11 -08:00
|
|
|
mFrontBuffer = CreateTextureClientForDrawing(gfx::ImageFormatToSurfaceFormat(format),
|
|
|
|
mTextureFlags);
|
|
|
|
MOZ_ASSERT(mFrontBuffer->AsTextureClientDrawTarget());
|
|
|
|
if (!mFrontBuffer->AsTextureClientDrawTarget()->AllocateForSurface(size)) {
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-30 02:59:51 -07:00
|
|
|
|
2013-08-19 16:39:55 -07:00
|
|
|
bufferCreated = true;
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
|
|
|
|
2014-01-07 08:20:11 -08:00
|
|
|
if (!mFrontBuffer->Lock(OPEN_WRITE_ONLY)) {
|
2013-07-30 02:59:51 -07:00
|
|
|
return false;
|
|
|
|
}
|
2014-01-07 08:20:11 -08:00
|
|
|
|
|
|
|
{
|
|
|
|
// We must not keep a reference to the DrawTarget after it has been unlocked.
|
|
|
|
RefPtr<DrawTarget> dt = mFrontBuffer->AsTextureClientDrawTarget()->GetAsDrawTarget();
|
2014-02-12 07:24:21 -08:00
|
|
|
MOZ_ASSERT(surface.get());
|
|
|
|
dt->CopySurface(surface, IntRect(IntPoint(), surface->GetSize()), IntPoint());
|
2014-01-07 08:20:11 -08:00
|
|
|
}
|
|
|
|
|
2013-07-30 02:59:51 -07:00
|
|
|
mFrontBuffer->Unlock();
|
2013-08-19 16:39:55 -07:00
|
|
|
|
|
|
|
if (bufferCreated) {
|
2013-10-09 16:18:29 -07:00
|
|
|
if (!AddTextureClient(mFrontBuffer)) {
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-19 16:39:55 -07:00
|
|
|
}
|
|
|
|
|
2014-01-07 08:20:11 -08:00
|
|
|
GetForwarder()->UpdatedTexture(this, mFrontBuffer, nullptr);
|
|
|
|
GetForwarder()->UseTexture(this, mFrontBuffer);
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
UpdatePictureRect(image->GetPictureRect());
|
|
|
|
|
|
|
|
mLastPaintedImageSerial = image->GetSerial();
|
|
|
|
aContainer->NotifyPaintedImage(image);
|
2014-02-13 06:46:59 -08:00
|
|
|
*aIsSwapped = true;
|
2013-07-30 02:59:51 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ImageClientBuffered::UpdateImage(ImageContainer* aContainer,
|
|
|
|
uint32_t aContentFlags)
|
|
|
|
{
|
|
|
|
RefPtr<TextureClient> temp = mFrontBuffer;
|
|
|
|
mFrontBuffer = mBackBuffer;
|
|
|
|
mBackBuffer = temp;
|
2014-02-13 06:46:59 -08:00
|
|
|
|
|
|
|
bool isSwapped = false;
|
|
|
|
bool ret = ImageClientSingle::UpdateImageInternal(aContainer, aContentFlags, &isSwapped);
|
|
|
|
|
|
|
|
if (!isSwapped) {
|
|
|
|
// If buffer swap did not happen at Host side, swap back the buffers.
|
|
|
|
RefPtr<TextureClient> temp = mFrontBuffer;
|
|
|
|
mFrontBuffer = mBackBuffer;
|
|
|
|
mBackBuffer = temp;
|
|
|
|
}
|
|
|
|
return ret;
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
|
|
|
|
2013-10-09 16:18:29 -07:00
|
|
|
bool
|
2013-07-30 02:59:51 -07:00
|
|
|
ImageClientSingle::AddTextureClient(TextureClient* aTexture)
|
|
|
|
{
|
2013-08-03 10:30:28 -07:00
|
|
|
MOZ_ASSERT((mTextureFlags & aTexture->GetFlags()) == mTextureFlags);
|
2013-10-09 16:18:29 -07:00
|
|
|
return CompositableClient::AddTextureClient(aTexture);
|
2013-07-30 02:59:51 -07:00
|
|
|
}
|
|
|
|
|
2013-08-27 13:16:03 -07:00
|
|
|
TemporaryRef<BufferTextureClient>
|
2014-02-19 11:28:05 -08:00
|
|
|
ImageClientSingle::CreateBufferTextureClient(gfx::SurfaceFormat aFormat, TextureFlags aFlags)
|
2013-08-27 13:16:03 -07:00
|
|
|
{
|
2014-02-19 11:28:05 -08:00
|
|
|
return CompositableClient::CreateBufferTextureClient(aFormat, mTextureFlags | aFlags);
|
2013-08-27 13:16:03 -07:00
|
|
|
}
|
|
|
|
|
2013-07-30 02:59:51 -07:00
|
|
|
void
|
2013-08-08 05:53:12 -07:00
|
|
|
ImageClientSingle::OnDetach()
|
2013-07-30 02:59:51 -07:00
|
|
|
{
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-08-08 05:53:12 -07:00
|
|
|
ImageClientBuffered::OnDetach()
|
2013-07-30 02:59:51 -07:00
|
|
|
{
|
|
|
|
mFrontBuffer = nullptr;
|
|
|
|
mBackBuffer = nullptr;
|
|
|
|
}
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
|
|
|
ImageClient::ImageClient(CompositableForwarder* aFwd, CompositableType aType)
|
|
|
|
: CompositableClient(aFwd)
|
|
|
|
, mType(aType)
|
|
|
|
, mLastPaintedImageSerial(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void
|
|
|
|
ImageClient::UpdatePictureRect(nsIntRect aRect)
|
|
|
|
{
|
|
|
|
if (mPictureRect == aRect) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mPictureRect = aRect;
|
|
|
|
MOZ_ASSERT(mForwarder);
|
|
|
|
GetForwarder()->UpdatePictureRect(this, aRect);
|
|
|
|
}
|
|
|
|
|
2013-07-24 09:08:35 -07:00
|
|
|
DeprecatedImageClientSingle::DeprecatedImageClientSingle(CompositableForwarder* aFwd,
|
|
|
|
TextureFlags aFlags,
|
|
|
|
CompositableType aType)
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
: ImageClient(aFwd, aType)
|
2013-04-12 00:28:55 -07:00
|
|
|
, mTextureInfo(aType)
|
|
|
|
{
|
|
|
|
mTextureInfo.mTextureFlags = aFlags;
|
|
|
|
}
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
2013-04-30 17:42:05 -07:00
|
|
|
bool
|
2013-07-24 09:08:35 -07:00
|
|
|
DeprecatedImageClientSingle::EnsureDeprecatedTextureClient(DeprecatedTextureClientType aType)
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
{
|
|
|
|
// We should not call this method if using ImageBridge or tiled texture
|
|
|
|
// clients since SupportsType always fails
|
2013-07-08 14:30:44 -07:00
|
|
|
if (mDeprecatedTextureClient && mDeprecatedTextureClient->SupportsType(aType)) {
|
2013-04-30 17:42:05 -07:00
|
|
|
return true;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
}
|
2013-07-08 14:30:44 -07:00
|
|
|
mDeprecatedTextureClient = CreateDeprecatedTextureClient(aType);
|
|
|
|
return !!mDeprecatedTextureClient;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-24 09:08:35 -07:00
|
|
|
DeprecatedImageClientSingle::UpdateImage(ImageContainer* aContainer,
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
uint32_t aContentFlags)
|
|
|
|
{
|
|
|
|
AutoLockImage autoLock(aContainer);
|
|
|
|
|
|
|
|
Image *image = autoLock.GetImage();
|
|
|
|
if (!image) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mLastPaintedImageSerial == image->GetSerial()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-30 14:58:49 -08:00
|
|
|
if (image->GetFormat() == ImageFormat::PLANAR_YCBCR &&
|
2013-07-08 14:30:44 -07:00
|
|
|
EnsureDeprecatedTextureClient(TEXTURE_YCBCR)) {
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
PlanarYCbCrImage* ycbcr = static_cast<PlanarYCbCrImage*>(image);
|
|
|
|
|
2013-07-24 09:08:35 -07:00
|
|
|
if (ycbcr->AsDeprecatedSharedPlanarYCbCrImage()) {
|
2013-07-08 14:30:44 -07:00
|
|
|
AutoLockDeprecatedTextureClient lock(mDeprecatedTextureClient);
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
|
|
|
SurfaceDescriptor sd;
|
2013-07-24 09:08:35 -07:00
|
|
|
if (!ycbcr->AsDeprecatedSharedPlanarYCbCrImage()->ToSurfaceDescriptor(sd)) {
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsSurfaceDescriptorValid(*lock.GetSurfaceDescriptor())) {
|
|
|
|
GetForwarder()->DestroySharedSurface(lock.GetSurfaceDescriptor());
|
|
|
|
}
|
|
|
|
|
|
|
|
*lock.GetSurfaceDescriptor() = sd;
|
|
|
|
} else {
|
2013-07-08 14:30:44 -07:00
|
|
|
AutoLockYCbCrClient clientLock(mDeprecatedTextureClient);
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
|
|
|
if (!clientLock.Update(ycbcr)) {
|
2013-07-08 14:30:44 -07:00
|
|
|
NS_WARNING("failed to update DeprecatedTextureClient (YCbCr)");
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-01-30 14:58:49 -08:00
|
|
|
} else if (image->GetFormat() == ImageFormat::SHARED_TEXTURE &&
|
2013-07-08 14:30:44 -07:00
|
|
|
EnsureDeprecatedTextureClient(TEXTURE_SHARED_GL_EXTERNAL)) {
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
SharedTextureImage* sharedImage = static_cast<SharedTextureImage*>(image);
|
|
|
|
const SharedTextureImage::Data *data = sharedImage->GetData();
|
|
|
|
|
|
|
|
SharedTextureDescriptor texture(data->mShareType,
|
|
|
|
data->mHandle,
|
|
|
|
data->mSize,
|
|
|
|
data->mInverted);
|
2013-07-08 14:30:44 -07:00
|
|
|
mDeprecatedTextureClient->SetDescriptor(SurfaceDescriptor(texture));
|
2014-01-30 14:58:49 -08:00
|
|
|
} else if (image->GetFormat() == ImageFormat::SHARED_RGB &&
|
2013-07-08 14:30:44 -07:00
|
|
|
EnsureDeprecatedTextureClient(TEXTURE_SHMEM)) {
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
nsIntRect rect(0, 0,
|
|
|
|
image->GetSize().width,
|
|
|
|
image->GetSize().height);
|
|
|
|
UpdatePictureRect(rect);
|
|
|
|
|
2013-07-08 14:30:44 -07:00
|
|
|
AutoLockDeprecatedTextureClient lock(mDeprecatedTextureClient);
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
|
|
|
SurfaceDescriptor desc;
|
2013-07-24 09:08:35 -07:00
|
|
|
if (!static_cast<DeprecatedSharedRGBImage*>(image)->ToSurfaceDescriptor(desc)) {
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
return false;
|
|
|
|
}
|
2013-07-08 14:30:44 -07:00
|
|
|
mDeprecatedTextureClient->SetDescriptor(desc);
|
2013-04-17 14:18:15 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2014-01-30 14:58:49 -08:00
|
|
|
} else if (image->GetFormat() == ImageFormat::GRALLOC_PLANAR_YCBCR) {
|
2013-07-08 14:30:44 -07:00
|
|
|
EnsureDeprecatedTextureClient(TEXTURE_SHARED_GL_EXTERNAL);
|
2013-04-30 03:14:20 -07:00
|
|
|
|
|
|
|
nsIntRect rect(0, 0,
|
|
|
|
image->GetSize().width,
|
|
|
|
image->GetSize().height);
|
|
|
|
UpdatePictureRect(rect);
|
|
|
|
|
2013-07-08 14:30:44 -07:00
|
|
|
AutoLockDeprecatedTextureClient lock(mDeprecatedTextureClient);
|
2013-04-30 03:14:20 -07:00
|
|
|
|
2013-07-24 19:13:35 -07:00
|
|
|
SurfaceDescriptor desc = static_cast<GrallocImage*>(image)->GetSurfaceDescriptor();
|
2013-04-30 03:14:20 -07:00
|
|
|
if (!IsSurfaceDescriptorValid(desc)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-08 14:30:44 -07:00
|
|
|
mDeprecatedTextureClient->SetDescriptor(desc);
|
2013-04-17 14:18:15 -07:00
|
|
|
#endif
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
} else {
|
2014-01-15 07:06:43 -08:00
|
|
|
nsRefPtr<gfxASurface> surface = image->DeprecatedGetAsSurface();
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
MOZ_ASSERT(surface);
|
|
|
|
|
2013-07-08 14:30:44 -07:00
|
|
|
EnsureDeprecatedTextureClient(TEXTURE_SHMEM);
|
|
|
|
MOZ_ASSERT(mDeprecatedTextureClient, "Failed to create texture client");
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
|
2013-07-08 14:30:44 -07:00
|
|
|
AutoLockShmemClient clientLock(mDeprecatedTextureClient);
|
2013-07-09 14:52:30 -07:00
|
|
|
if (!clientLock.Update(image, aContentFlags, surface)) {
|
2013-07-08 14:30:44 -07:00
|
|
|
NS_WARNING("failed to update DeprecatedTextureClient");
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Updated();
|
|
|
|
|
2014-01-30 14:58:49 -08:00
|
|
|
if (image->GetFormat() == ImageFormat::PLANAR_YCBCR) {
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
PlanarYCbCrImage* ycbcr = static_cast<PlanarYCbCrImage*>(image);
|
|
|
|
UpdatePictureRect(ycbcr->GetData()->GetPictureRect());
|
|
|
|
}
|
|
|
|
|
|
|
|
mLastPaintedImageSerial = image->GetSerial();
|
|
|
|
aContainer->NotifyPaintedImage(image);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-07-24 09:08:35 -07:00
|
|
|
DeprecatedImageClientSingle::Updated()
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
{
|
2013-09-23 18:14:12 -07:00
|
|
|
mForwarder->UpdateTexture(this, 1, mDeprecatedTextureClient->LockSurfaceDescriptor());
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ImageClientBridge::ImageClientBridge(CompositableForwarder* aFwd,
|
|
|
|
TextureFlags aFlags)
|
|
|
|
: ImageClient(aFwd, BUFFER_BRIDGE)
|
|
|
|
, mAsyncContainerID(0)
|
|
|
|
, mLayer(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ImageClientBridge::UpdateImage(ImageContainer* aContainer, uint32_t aContentFlags)
|
|
|
|
{
|
|
|
|
if (!GetForwarder() || !mLayer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (mAsyncContainerID == aContainer->GetAsyncContainerID()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
mAsyncContainerID = aContainer->GetAsyncContainerID();
|
|
|
|
static_cast<ShadowLayerForwarder*>(GetForwarder())->AttachAsyncCompositable(mAsyncContainerID, mLayer);
|
|
|
|
AutoLockImage autoLock(aContainer);
|
|
|
|
aContainer->NotifyPaintedImage(autoLock.GetImage());
|
|
|
|
Updated();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<Image>
|
2014-01-30 14:58:51 -08:00
|
|
|
ImageClientSingle::CreateImage(ImageFormat aFormat)
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
{
|
|
|
|
nsRefPtr<Image> img;
|
2014-01-30 14:58:51 -08:00
|
|
|
switch (aFormat) {
|
|
|
|
case ImageFormat::PLANAR_YCBCR:
|
|
|
|
img = new SharedPlanarYCbCrImage(this);
|
|
|
|
return img.forget();
|
|
|
|
case ImageFormat::SHARED_RGB:
|
|
|
|
img = new SharedRGBImage(this);
|
|
|
|
return img.forget();
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2014-01-30 14:58:51 -08:00
|
|
|
case ImageFormat::GRALLOC_PLANAR_YCBCR:
|
|
|
|
img = new GrallocImage();
|
|
|
|
return img.forget();
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
#endif
|
2014-01-30 14:58:51 -08:00
|
|
|
default:
|
|
|
|
return nullptr;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-28 06:21:05 -07:00
|
|
|
already_AddRefed<Image>
|
2014-01-30 14:58:51 -08:00
|
|
|
DeprecatedImageClientSingle::CreateImage(ImageFormat aFormat)
|
2013-08-28 06:21:05 -07:00
|
|
|
{
|
|
|
|
nsRefPtr<Image> img;
|
2014-01-30 14:58:51 -08:00
|
|
|
switch (aFormat) {
|
|
|
|
case ImageFormat::PLANAR_YCBCR:
|
|
|
|
img = new DeprecatedSharedPlanarYCbCrImage(GetForwarder());
|
|
|
|
return img.forget();
|
|
|
|
case ImageFormat::SHARED_RGB:
|
|
|
|
img = new DeprecatedSharedRGBImage(GetForwarder());
|
|
|
|
return img.forget();
|
2013-08-28 06:21:05 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2014-01-30 14:58:51 -08:00
|
|
|
case ImageFormat::GRALLOC_PLANAR_YCBCR:
|
|
|
|
img = new GrallocImage();
|
|
|
|
return img.forget();
|
2013-08-28 06:21:05 -07:00
|
|
|
#endif
|
2014-01-30 14:58:51 -08:00
|
|
|
default:
|
|
|
|
return nullptr;
|
2013-08-28 06:21:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 02:20:52 -07:00
|
|
|
}
|
|
|
|
}
|