2013-05-01 00:42:05 +00: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/. */
|
|
|
|
|
|
|
|
#include "BasicCompositor.h"
|
2013-12-04 00:20:04 +00:00
|
|
|
#include "TextureHostBasic.h"
|
2013-05-01 00:42:05 +00:00
|
|
|
#include "ipc/AutoOpenSurface.h"
|
|
|
|
#include "mozilla/layers/Effects.h"
|
2013-07-03 20:35:51 +00:00
|
|
|
#include "mozilla/layers/YCbCrImageDataSerializer.h"
|
2013-05-01 00:42:05 +00:00
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "gfx2DGlue.h"
|
2013-08-27 08:52:14 +00:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-11-11 23:53:29 +00:00
|
|
|
#include "mozilla/gfx/Helpers.h"
|
2013-05-01 00:42:05 +00:00
|
|
|
#include "gfxUtils.h"
|
2013-12-13 17:31:57 +00:00
|
|
|
#include "YCbCrUtils.h"
|
2013-05-01 00:42:05 +00:00
|
|
|
#include <algorithm>
|
2013-10-02 00:57:50 +00:00
|
|
|
#include "ImageContainer.h"
|
2013-11-11 23:53:29 +00:00
|
|
|
#define PIXMAN_DONT_DEFINE_STDINT
|
|
|
|
#include "pixman.h" // for pixman_f_transform, etc
|
2013-05-01 00:42:05 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
|
|
|
namespace layers {
|
|
|
|
|
2013-08-27 08:52:14 +00:00
|
|
|
class DataTextureSourceBasic : public DataTextureSource
|
|
|
|
, public TextureSourceBasic
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual TextureSourceBasic* AsSourceBasic() MOZ_OVERRIDE { return this; }
|
|
|
|
|
|
|
|
virtual gfx::SourceSurface* GetSurface() MOZ_OVERRIDE { return mSurface; }
|
|
|
|
|
|
|
|
SurfaceFormat GetFormat() const MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
return mSurface->GetFormat();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual IntSize GetSize() const MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
return mSurface->GetSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Update(gfx::DataSourceSurface* aSurface,
|
|
|
|
nsIntRegion* aDestRegion = nullptr,
|
|
|
|
gfx::IntPoint* aSrcOffset = nullptr) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
// XXX - For this to work with IncrementalContentHost we will need to support
|
|
|
|
// the aDestRegion and aSrcOffset parameters properly;
|
|
|
|
mSurface = aSurface;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void DeallocateDeviceData() MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
mSurface = nullptr;
|
|
|
|
SetUpdateSerial(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
RefPtr<gfx::DataSourceSurface> mSurface;
|
|
|
|
};
|
|
|
|
|
2013-12-13 07:33:50 +00:00
|
|
|
/**
|
|
|
|
* Texture source and host implementaion for software compositing.
|
|
|
|
*/
|
|
|
|
class DeprecatedTextureHostBasic : public DeprecatedTextureHost
|
|
|
|
, public TextureSourceBasic
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DeprecatedTextureHostBasic()
|
|
|
|
: mCompositor(nullptr)
|
|
|
|
{}
|
|
|
|
|
|
|
|
SurfaceFormat GetFormat() const MOZ_OVERRIDE { return mFormat; }
|
|
|
|
|
|
|
|
virtual IntSize GetSize() const MOZ_OVERRIDE { return mSize; }
|
|
|
|
|
|
|
|
virtual TextureSourceBasic* AsSourceBasic() MOZ_OVERRIDE { return this; }
|
|
|
|
|
|
|
|
SourceSurface *GetSurface() MOZ_OVERRIDE { return mSurface; }
|
|
|
|
|
|
|
|
virtual void SetCompositor(Compositor* aCompositor)
|
|
|
|
{
|
|
|
|
mCompositor = static_cast<BasicCompositor*>(aCompositor);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *Name() { return "DeprecatedTextureHostBasic"; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void UpdateImpl(const SurfaceDescriptor& aImage,
|
|
|
|
nsIntRegion *aRegion,
|
|
|
|
nsIntPoint*) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
AutoOpenSurface surf(OPEN_READ_ONLY, aImage);
|
|
|
|
nsRefPtr<gfxASurface> surface = ShadowLayerForwarder::OpenDescriptor(OPEN_READ_ONLY, aImage);
|
2014-01-23 14:11:36 +00:00
|
|
|
if (!surface) {
|
|
|
|
if (aImage.type() != SurfaceDescriptor::TShmem &&
|
|
|
|
aImage.type() != SurfaceDescriptor::TMemoryImage &&
|
|
|
|
aImage.type() != SurfaceDescriptor::TRGBImage) {
|
|
|
|
printf_stderr("Unsupported SurfaceDescriptor type: %i\n", static_cast<int>(aImage.type()));
|
|
|
|
}
|
|
|
|
NS_WARNING("Could not open the SurfaceDescriptor");
|
|
|
|
return;
|
|
|
|
}
|
2013-12-13 07:33:50 +00:00
|
|
|
nsRefPtr<gfxImageSurface> image = surface->GetAsImageSurface();
|
|
|
|
mFormat = ImageFormatToSurfaceFormat(image->Format());
|
|
|
|
mSize = IntSize(image->Width(), image->Height());
|
|
|
|
mSurface = Factory::CreateWrappingDataSourceSurface(image->Data(),
|
|
|
|
image->Stride(),
|
|
|
|
mSize,
|
|
|
|
mFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool EnsureSurface() {
|
2014-01-23 14:11:36 +00:00
|
|
|
return mSurface != nullptr;
|
2013-12-13 07:33:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Lock() MOZ_OVERRIDE {
|
|
|
|
return EnsureSurface();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual TemporaryRef<gfx::DataSourceSurface> GetAsSurface() MOZ_OVERRIDE {
|
|
|
|
if (!mSurface) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return mSurface->GetDataSurface();
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicCompositor *mCompositor;
|
|
|
|
RefPtr<SourceSurface> mSurface;
|
|
|
|
IntSize mSize;
|
|
|
|
SurfaceFormat mFormat;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
DeserializerToPlanarYCbCrImageData(YCbCrImageDataDeserializer& aDeserializer, PlanarYCbCrData& aData)
|
|
|
|
{
|
|
|
|
aData.mYChannel = aDeserializer.GetYData();
|
|
|
|
aData.mYStride = aDeserializer.GetYStride();
|
|
|
|
aData.mYSize = aDeserializer.GetYSize();
|
|
|
|
aData.mCbChannel = aDeserializer.GetCbData();
|
|
|
|
aData.mCrChannel = aDeserializer.GetCrData();
|
|
|
|
aData.mCbCrStride = aDeserializer.GetCbCrStride();
|
|
|
|
aData.mCbCrSize = aDeserializer.GetCbCrSize();
|
|
|
|
aData.mPicSize = aDeserializer.GetYSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
class YCbCrDeprecatedTextureHostBasic : public DeprecatedTextureHostBasic
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void UpdateImpl(const SurfaceDescriptor& aImage,
|
|
|
|
nsIntRegion *aRegion,
|
|
|
|
nsIntPoint*) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aImage.type() == SurfaceDescriptor::TYCbCrImage);
|
|
|
|
mSurface = nullptr;
|
|
|
|
ConvertImageToRGB(aImage);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SwapTexturesImpl(const SurfaceDescriptor& aImage,
|
|
|
|
nsIntRegion* aRegion) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aImage.type() == SurfaceDescriptor::TYCbCrImage);
|
|
|
|
mSurface = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool EnsureSurface() MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
if (mSurface) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!mBuffer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return ConvertImageToRGB(*mBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ConvertImageToRGB(const SurfaceDescriptor& aImage)
|
|
|
|
{
|
2014-02-20 21:04:13 +00:00
|
|
|
YCbCrImageDataDeserializer deserializer(aImage.get_YCbCrImage().data().get<uint8_t>(),
|
|
|
|
aImage.get_YCbCrImage().data().Size<uint8_t>());
|
2013-12-13 07:33:50 +00:00
|
|
|
PlanarYCbCrData data;
|
|
|
|
DeserializerToPlanarYCbCrImageData(deserializer, data);
|
|
|
|
|
2014-01-10 19:06:16 +00:00
|
|
|
gfx::SurfaceFormat format = SurfaceFormat::B8G8R8X8;
|
2013-12-13 17:31:57 +00:00
|
|
|
gfx::IntSize size;
|
|
|
|
gfx::GetYCbCrToRGBDestFormatAndSize(data, format, size);
|
2013-12-13 07:33:50 +00:00
|
|
|
if (size.width > PlanarYCbCrImage::MAX_DIMENSION ||
|
|
|
|
size.height > PlanarYCbCrImage::MAX_DIMENSION) {
|
|
|
|
NS_ERROR("Illegal image dest width or height");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-13 17:31:57 +00:00
|
|
|
mSize = size;
|
|
|
|
mFormat = format;
|
2013-12-13 07:33:50 +00:00
|
|
|
|
|
|
|
RefPtr<DataSourceSurface> surface = Factory::CreateDataSourceSurface(mSize, mFormat);
|
2013-12-13 17:31:57 +00:00
|
|
|
gfx::ConvertYCbCrToRGB(data, format, size, surface->GetData(), surface->Stride());
|
2013-12-13 07:33:50 +00:00
|
|
|
|
|
|
|
mSurface = surface;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TemporaryRef<DeprecatedTextureHost>
|
|
|
|
CreateBasicDeprecatedTextureHost(SurfaceDescriptorType aDescriptorType,
|
|
|
|
uint32_t aTextureHostFlags,
|
|
|
|
uint32_t aTextureFlags)
|
|
|
|
{
|
|
|
|
RefPtr<DeprecatedTextureHost> result = nullptr;
|
|
|
|
if (aDescriptorType == SurfaceDescriptor::TYCbCrImage) {
|
|
|
|
result = new YCbCrDeprecatedTextureHostBasic();
|
|
|
|
} else {
|
|
|
|
MOZ_ASSERT(aDescriptorType == SurfaceDescriptor::TShmem ||
|
|
|
|
aDescriptorType == SurfaceDescriptor::TMemoryImage,
|
|
|
|
"We can only support Shmem currently");
|
|
|
|
result = new DeprecatedTextureHostBasic();
|
|
|
|
}
|
|
|
|
|
|
|
|
result->SetFlags(aTextureFlags);
|
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
BasicCompositor::BasicCompositor(nsIWidget *aWidget)
|
|
|
|
: mWidget(aWidget)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(BasicCompositor);
|
2014-02-13 16:53:50 +00:00
|
|
|
SetBackend(LayersBackend::LAYERS_BASIC);
|
2013-05-01 00:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BasicCompositor::~BasicCompositor()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(BasicCompositor);
|
|
|
|
}
|
|
|
|
|
2013-07-09 04:21:05 +00:00
|
|
|
void BasicCompositor::Destroy()
|
|
|
|
{
|
|
|
|
mWidget->CleanupRemoteDrawing();
|
|
|
|
mWidget = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
TemporaryRef<CompositingRenderTarget>
|
|
|
|
BasicCompositor::CreateRenderTarget(const IntRect& aRect, SurfaceInitMode aInit)
|
|
|
|
{
|
2014-01-10 19:06:16 +00:00
|
|
|
RefPtr<DrawTarget> target = mDrawTarget->CreateSimilarDrawTarget(aRect.Size(), SurfaceFormat::B8G8R8A8);
|
2013-05-01 00:42:05 +00:00
|
|
|
|
2013-11-07 09:53:08 +00:00
|
|
|
RefPtr<BasicCompositingRenderTarget> rt = new BasicCompositingRenderTarget(target, aRect);
|
2013-05-01 00:42:05 +00:00
|
|
|
|
|
|
|
return rt.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
TemporaryRef<CompositingRenderTarget>
|
|
|
|
BasicCompositor::CreateRenderTargetFromSource(const IntRect &aRect,
|
2013-11-07 09:53:07 +00:00
|
|
|
const CompositingRenderTarget *aSource,
|
|
|
|
const IntPoint &aSourcePoint)
|
2013-05-01 00:42:05 +00:00
|
|
|
{
|
2014-01-10 19:06:16 +00:00
|
|
|
RefPtr<DrawTarget> target = mDrawTarget->CreateSimilarDrawTarget(aRect.Size(), SurfaceFormat::B8G8R8A8);
|
2013-11-07 09:53:08 +00:00
|
|
|
RefPtr<BasicCompositingRenderTarget> rt = new BasicCompositingRenderTarget(target, aRect);
|
2013-05-01 00:42:05 +00:00
|
|
|
|
|
|
|
DrawTarget *source;
|
|
|
|
if (aSource) {
|
|
|
|
const BasicCompositingRenderTarget* sourceSurface =
|
|
|
|
static_cast<const BasicCompositingRenderTarget*>(aSource);
|
|
|
|
source = sourceSurface->mDrawTarget;
|
|
|
|
} else {
|
|
|
|
source = mDrawTarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<SourceSurface> snapshot = source->Snapshot();
|
|
|
|
|
2013-11-07 09:53:07 +00:00
|
|
|
IntRect sourceRect(aSourcePoint, aRect.Size());
|
|
|
|
rt->mDrawTarget->CopySurface(snapshot, sourceRect, IntPoint(0, 0));
|
2013-05-01 00:42:05 +00:00
|
|
|
return rt.forget();
|
|
|
|
}
|
|
|
|
|
2013-08-27 08:52:14 +00:00
|
|
|
TemporaryRef<DataTextureSource>
|
|
|
|
BasicCompositor::CreateDataTextureSource(TextureFlags aFlags)
|
|
|
|
{
|
|
|
|
RefPtr<DataTextureSource> result = new DataTextureSourceBasic();
|
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BasicCompositor::SupportsEffect(EffectTypes aEffect)
|
|
|
|
{
|
|
|
|
return static_cast<EffectTypes>(aEffect) != EFFECT_YCBCR;
|
|
|
|
}
|
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
static void
|
|
|
|
DrawSurfaceWithTextureCoords(DrawTarget *aDest,
|
|
|
|
const gfx::Rect& aDestRect,
|
|
|
|
SourceSurface *aSource,
|
|
|
|
const gfx::Rect& aTextureCoords,
|
2014-02-11 02:45:11 +00:00
|
|
|
gfx::Filter aFilter,
|
2013-05-01 00:42:05 +00:00
|
|
|
float aOpacity,
|
|
|
|
SourceSurface *aMask,
|
|
|
|
const Matrix& aMaskTransform)
|
|
|
|
{
|
|
|
|
// Convert aTextureCoords into aSource's coordinate space
|
|
|
|
gfxRect sourceRect(aTextureCoords.x * aSource->GetSize().width,
|
|
|
|
aTextureCoords.y * aSource->GetSize().height,
|
|
|
|
aTextureCoords.width * aSource->GetSize().width,
|
|
|
|
aTextureCoords.height * aSource->GetSize().height);
|
|
|
|
// Compute a transform that maps sourceRect to aDestRect.
|
|
|
|
gfxMatrix transform =
|
|
|
|
gfxUtils::TransformRectToRect(sourceRect,
|
|
|
|
gfxPoint(aDestRect.x, aDestRect.y),
|
|
|
|
gfxPoint(aDestRect.XMost(), aDestRect.y),
|
|
|
|
gfxPoint(aDestRect.XMost(), aDestRect.YMost()));
|
|
|
|
Matrix matrix = ToMatrix(transform);
|
2014-02-11 02:46:34 +00:00
|
|
|
|
|
|
|
// Only use REPEAT if aTextureCoords is outside (0, 0, 1, 1).
|
|
|
|
gfx::Rect unitRect(0, 0, 1, 1);
|
|
|
|
ExtendMode mode = unitRect.Contains(aTextureCoords) ? ExtendMode::CLAMP : ExtendMode::REPEAT;
|
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
if (aMask) {
|
2013-12-18 11:19:47 +00:00
|
|
|
aDest->PushClipRect(aDestRect);
|
|
|
|
Matrix maskTransformInverse = aMaskTransform;
|
|
|
|
maskTransformInverse.Invert();
|
|
|
|
Matrix dtTransform = aDest->GetTransform();
|
|
|
|
aDest->SetTransform(aMaskTransform);
|
|
|
|
Matrix patternMatrix = maskTransformInverse * dtTransform * matrix;
|
2014-02-11 02:46:34 +00:00
|
|
|
aDest->MaskSurface(SurfacePattern(aSource, mode, patternMatrix, aFilter),
|
2013-12-18 11:19:47 +00:00
|
|
|
aMask, Point(), DrawOptions(aOpacity));
|
|
|
|
aDest->SetTransform(dtTransform);
|
|
|
|
aDest->PopClip();
|
2013-05-01 00:42:05 +00:00
|
|
|
} else {
|
|
|
|
aDest->FillRect(aDestRect,
|
2014-02-11 02:46:34 +00:00
|
|
|
SurfacePattern(aSource, mode, matrix, aFilter),
|
2013-05-01 00:42:05 +00:00
|
|
|
DrawOptions(aOpacity));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-11 23:53:29 +00:00
|
|
|
static pixman_transform
|
|
|
|
Matrix3DToPixman(const gfx3DMatrix& aMatrix)
|
|
|
|
{
|
|
|
|
pixman_f_transform transform;
|
|
|
|
|
|
|
|
transform.m[0][0] = aMatrix._11;
|
|
|
|
transform.m[0][1] = aMatrix._21;
|
|
|
|
transform.m[0][2] = aMatrix._41;
|
|
|
|
transform.m[1][0] = aMatrix._12;
|
|
|
|
transform.m[1][1] = aMatrix._22;
|
|
|
|
transform.m[1][2] = aMatrix._42;
|
|
|
|
transform.m[2][0] = aMatrix._14;
|
|
|
|
transform.m[2][1] = aMatrix._24;
|
|
|
|
transform.m[2][2] = aMatrix._44;
|
|
|
|
|
|
|
|
pixman_transform result;
|
|
|
|
pixman_transform_from_pixman_f_transform(&result, &transform);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
PixmanTransform(DataSourceSurface* aDest,
|
|
|
|
DataSourceSurface* aSource,
|
|
|
|
const gfx3DMatrix& aTransform,
|
|
|
|
gfxPoint aDestOffset)
|
|
|
|
{
|
|
|
|
IntSize destSize = aDest->GetSize();
|
|
|
|
pixman_image_t* dest = pixman_image_create_bits(PIXMAN_a8r8g8b8,
|
|
|
|
destSize.width,
|
|
|
|
destSize.height,
|
|
|
|
(uint32_t*)aDest->GetData(),
|
|
|
|
aDest->Stride());
|
|
|
|
|
|
|
|
IntSize srcSize = aSource->GetSize();
|
|
|
|
pixman_image_t* src = pixman_image_create_bits(PIXMAN_a8r8g8b8,
|
|
|
|
srcSize.width,
|
|
|
|
srcSize.height,
|
|
|
|
(uint32_t*)aSource->GetData(),
|
|
|
|
aSource->Stride());
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(src && dest, "Failed to create pixman images?");
|
|
|
|
|
|
|
|
pixman_transform pixTransform = Matrix3DToPixman(aTransform);
|
|
|
|
pixman_transform pixTransformInverted;
|
|
|
|
|
|
|
|
// If the transform is singular then nothing would be drawn anyway, return here
|
|
|
|
if (!pixman_transform_invert(&pixTransformInverted, &pixTransform)) {
|
|
|
|
pixman_image_unref(dest);
|
|
|
|
pixman_image_unref(src);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pixman_image_set_transform(src, &pixTransformInverted);
|
|
|
|
|
|
|
|
pixman_image_composite32(PIXMAN_OP_SRC,
|
|
|
|
src,
|
|
|
|
nullptr,
|
|
|
|
dest,
|
|
|
|
aDestOffset.x,
|
|
|
|
aDestOffset.y,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
destSize.width,
|
|
|
|
destSize.height);
|
|
|
|
|
|
|
|
pixman_image_unref(dest);
|
|
|
|
pixman_image_unref(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline IntRect
|
|
|
|
RoundOut(Rect r)
|
|
|
|
{
|
|
|
|
r.RoundOut();
|
|
|
|
return IntRect(r.x, r.y, r.width, r.height);
|
|
|
|
}
|
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
void
|
2013-11-07 09:53:08 +00:00
|
|
|
BasicCompositor::DrawQuad(const gfx::Rect& aRect,
|
|
|
|
const gfx::Rect& aClipRect,
|
2013-05-01 00:42:05 +00:00
|
|
|
const EffectChain &aEffectChain,
|
2013-11-07 09:53:08 +00:00
|
|
|
gfx::Float aOpacity,
|
|
|
|
const gfx::Matrix4x4 &aTransform)
|
2013-05-01 00:42:05 +00:00
|
|
|
{
|
2013-11-21 19:25:16 +00:00
|
|
|
RefPtr<DrawTarget> buffer = mRenderTarget->mDrawTarget;
|
2013-05-01 00:42:05 +00:00
|
|
|
|
2013-11-11 23:53:29 +00:00
|
|
|
// For 2D drawing, |dest| and |buffer| are the same surface. For 3D drawing,
|
|
|
|
// |dest| is a temporary surface.
|
|
|
|
RefPtr<DrawTarget> dest = buffer;
|
2013-05-01 00:42:05 +00:00
|
|
|
|
2013-11-11 23:53:29 +00:00
|
|
|
buffer->PushClipRect(aClipRect);
|
|
|
|
AutoSaveTransform autoSaveTransform(dest);
|
2013-05-01 00:42:05 +00:00
|
|
|
|
2013-11-11 23:53:29 +00:00
|
|
|
Matrix newTransform;
|
|
|
|
Rect transformBounds;
|
|
|
|
gfx3DMatrix new3DTransform;
|
2013-11-07 09:53:08 +00:00
|
|
|
IntPoint offset = mRenderTarget->GetOrigin();
|
2013-11-11 23:53:29 +00:00
|
|
|
|
|
|
|
if (aTransform.Is2D()) {
|
|
|
|
newTransform = aTransform.As2D();
|
|
|
|
} else {
|
|
|
|
// Create a temporary surface for the transform.
|
2014-01-10 19:06:16 +00:00
|
|
|
dest = gfxPlatform::GetPlatform()->CreateOffscreenContentDrawTarget(RoundOut(aRect).Size(), SurfaceFormat::B8G8R8A8);
|
2013-11-11 23:53:29 +00:00
|
|
|
if (!dest) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the bounds post-transform.
|
|
|
|
To3DMatrix(aTransform, new3DTransform);
|
|
|
|
gfxRect bounds = new3DTransform.TransformBounds(ThebesRect(aRect));
|
|
|
|
bounds.IntersectRect(bounds, gfxRect(offset.x, offset.y, buffer->GetSize().width, buffer->GetSize().height));
|
|
|
|
|
|
|
|
transformBounds = ToRect(bounds);
|
|
|
|
transformBounds.RoundOut();
|
|
|
|
|
|
|
|
// Propagate the coordinate offset to our 2D draw target.
|
|
|
|
newTransform.Translate(transformBounds.x, transformBounds.y);
|
|
|
|
|
|
|
|
// When we apply the 3D transformation, we do it against a temporary
|
|
|
|
// surface, so undo the coordinate offset.
|
|
|
|
new3DTransform = new3DTransform * gfx3DMatrix::Translation(-transformBounds.x, -transformBounds.y, 0);
|
|
|
|
|
|
|
|
transformBounds.MoveTo(0, 0);
|
|
|
|
}
|
|
|
|
|
2013-11-07 09:53:08 +00:00
|
|
|
newTransform.Translate(-offset.x, -offset.y);
|
2013-11-11 23:53:29 +00:00
|
|
|
buffer->SetTransform(newTransform);
|
2013-05-01 00:42:05 +00:00
|
|
|
|
|
|
|
RefPtr<SourceSurface> sourceMask;
|
|
|
|
Matrix maskTransform;
|
|
|
|
if (aEffectChain.mSecondaryEffects[EFFECT_MASK]) {
|
|
|
|
EffectMask *effectMask = static_cast<EffectMask*>(aEffectChain.mSecondaryEffects[EFFECT_MASK].get());
|
|
|
|
sourceMask = effectMask->mMaskTexture->AsSourceBasic()->GetSurface();
|
|
|
|
MOZ_ASSERT(effectMask->mMaskTransform.Is2D(), "How did we end up with a 3D transform here?!");
|
|
|
|
MOZ_ASSERT(!effectMask->mIs3D);
|
|
|
|
maskTransform = effectMask->mMaskTransform.As2D();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (aEffectChain.mPrimaryEffect->mType) {
|
|
|
|
case EFFECT_SOLID_COLOR: {
|
|
|
|
EffectSolidColor* effectSolidColor =
|
|
|
|
static_cast<EffectSolidColor*>(aEffectChain.mPrimaryEffect.get());
|
|
|
|
|
|
|
|
dest->FillRect(aRect,
|
|
|
|
ColorPattern(effectSolidColor->mColor),
|
|
|
|
DrawOptions(aOpacity));
|
|
|
|
break;
|
|
|
|
}
|
2013-11-08 06:22:05 +00:00
|
|
|
case EFFECT_RGB: {
|
2013-05-01 00:42:05 +00:00
|
|
|
TexturedEffect* texturedEffect =
|
|
|
|
static_cast<TexturedEffect*>(aEffectChain.mPrimaryEffect.get());
|
|
|
|
TextureSourceBasic* source = texturedEffect->mTexture->AsSourceBasic();
|
|
|
|
|
|
|
|
DrawSurfaceWithTextureCoords(dest, aRect,
|
|
|
|
source->GetSurface(),
|
|
|
|
texturedEffect->mTextureCoords,
|
2014-02-11 02:45:11 +00:00
|
|
|
texturedEffect->mFilter,
|
2013-05-01 00:42:05 +00:00
|
|
|
aOpacity, sourceMask, maskTransform);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EFFECT_YCBCR: {
|
|
|
|
NS_RUNTIMEABORT("Can't (easily) support component alpha with BasicCompositor!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EFFECT_RENDER_TARGET: {
|
|
|
|
EffectRenderTarget* effectRenderTarget =
|
|
|
|
static_cast<EffectRenderTarget*>(aEffectChain.mPrimaryEffect.get());
|
|
|
|
RefPtr<BasicCompositingRenderTarget> surface
|
|
|
|
= static_cast<BasicCompositingRenderTarget*>(effectRenderTarget->mRenderTarget.get());
|
|
|
|
RefPtr<SourceSurface> sourceSurf = surface->mDrawTarget->Snapshot();
|
|
|
|
|
|
|
|
DrawSurfaceWithTextureCoords(dest, aRect,
|
|
|
|
sourceSurf,
|
|
|
|
effectRenderTarget->mTextureCoords,
|
2014-02-11 02:45:11 +00:00
|
|
|
effectRenderTarget->mFilter,
|
2013-05-01 00:42:05 +00:00
|
|
|
aOpacity, sourceMask, maskTransform);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EFFECT_COMPONENT_ALPHA: {
|
|
|
|
NS_RUNTIMEABORT("Can't (easily) support component alpha with BasicCompositor!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
NS_RUNTIMEABORT("Invalid effect type!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-11 23:53:29 +00:00
|
|
|
if (!aTransform.Is2D()) {
|
|
|
|
dest->Flush();
|
|
|
|
|
|
|
|
RefPtr<SourceSurface> snapshot = dest->Snapshot();
|
|
|
|
RefPtr<DataSourceSurface> source = snapshot->GetDataSurface();
|
|
|
|
RefPtr<DataSourceSurface> temp =
|
2014-01-10 19:06:16 +00:00
|
|
|
Factory::CreateDataSourceSurface(RoundOut(transformBounds).Size(), SurfaceFormat::B8G8R8A8);
|
2013-11-11 23:53:29 +00:00
|
|
|
if (!temp) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PixmanTransform(temp, source, new3DTransform, gfxPoint(0, 0));
|
|
|
|
|
|
|
|
buffer->DrawSurface(temp, transformBounds, transformBounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->PopClip();
|
2013-05-01 00:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-11-21 19:25:16 +00:00
|
|
|
BasicCompositor::BeginFrame(const nsIntRegion& aInvalidRegion,
|
|
|
|
const gfx::Rect *aClipRectIn,
|
2014-01-16 07:22:19 +00:00
|
|
|
const gfx::Matrix& aTransform,
|
2013-05-01 00:42:05 +00:00
|
|
|
const gfx::Rect& aRenderBounds,
|
|
|
|
gfx::Rect *aClipRectOut /* = nullptr */,
|
|
|
|
gfx::Rect *aRenderBoundsOut /* = nullptr */)
|
|
|
|
{
|
|
|
|
nsIntRect intRect;
|
|
|
|
mWidget->GetClientBounds(intRect);
|
2014-02-11 00:43:32 +00:00
|
|
|
|
|
|
|
// The result of GetClientBounds is shifted over by the size of the window
|
|
|
|
// manager styling. We want to ignore that.
|
|
|
|
intRect.MoveTo(0, 0);
|
2013-05-01 00:42:05 +00:00
|
|
|
Rect rect = Rect(0, 0, intRect.width, intRect.height);
|
|
|
|
|
2014-02-11 00:43:32 +00:00
|
|
|
// Sometimes the invalid region is larger than we want to draw.
|
|
|
|
nsIntRegion invalidRegionSafe;
|
|
|
|
invalidRegionSafe.And(aInvalidRegion, intRect);
|
|
|
|
|
|
|
|
nsIntRect invalidRect = invalidRegionSafe.GetBounds();
|
2013-11-21 19:25:16 +00:00
|
|
|
mInvalidRect = IntRect(invalidRect.x, invalidRect.y, invalidRect.width, invalidRect.height);
|
2014-02-11 00:43:32 +00:00
|
|
|
mInvalidRegion = invalidRegionSafe;
|
2013-11-21 19:25:16 +00:00
|
|
|
|
|
|
|
if (aRenderBoundsOut) {
|
|
|
|
*aRenderBoundsOut = Rect();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mInvalidRect.width <= 0 || mInvalidRect.height <= 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
if (mCopyTarget) {
|
|
|
|
// If we have a copy target, then we don't have a widget-provided mDrawTarget (currently). Create a dummy
|
|
|
|
// placeholder so that CreateRenderTarget() works.
|
2014-01-10 19:06:16 +00:00
|
|
|
mDrawTarget = gfxPlatform::GetPlatform()->CreateOffscreenCanvasDrawTarget(IntSize(1,1), SurfaceFormat::B8G8R8A8);
|
2013-07-09 04:21:05 +00:00
|
|
|
} else {
|
|
|
|
mDrawTarget = mWidget->StartRemoteDrawing();
|
2013-05-01 00:42:05 +00:00
|
|
|
}
|
|
|
|
if (!mDrawTarget) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup an intermediate render target to buffer all compositing. We will
|
|
|
|
// copy this into mDrawTarget (the widget), and/or mCopyTarget in EndFrame()
|
2013-11-21 19:25:16 +00:00
|
|
|
RefPtr<CompositingRenderTarget> target = CreateRenderTarget(mInvalidRect, INIT_MODE_CLEAR);
|
2013-05-01 00:42:05 +00:00
|
|
|
SetRenderTarget(target);
|
|
|
|
|
2013-11-21 19:25:16 +00:00
|
|
|
// We only allocate a surface sized to the invalidated region, so we need to
|
|
|
|
// translate future coordinates.
|
|
|
|
Matrix transform;
|
|
|
|
transform.Translate(-invalidRect.x, -invalidRect.y);
|
|
|
|
mRenderTarget->mDrawTarget->SetTransform(transform);
|
|
|
|
|
2014-02-24 22:45:40 +00:00
|
|
|
gfxUtils::ClipToRegion(mRenderTarget->mDrawTarget, invalidRegionSafe);
|
2013-11-21 19:25:16 +00:00
|
|
|
|
2013-05-01 00:42:05 +00:00
|
|
|
if (aRenderBoundsOut) {
|
|
|
|
*aRenderBoundsOut = rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aClipRectIn) {
|
|
|
|
mRenderTarget->mDrawTarget->PushClipRect(*aClipRectIn);
|
|
|
|
} else {
|
|
|
|
mRenderTarget->mDrawTarget->PushClipRect(rect);
|
|
|
|
if (aClipRectOut) {
|
|
|
|
*aClipRectOut = rect;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicCompositor::EndFrame()
|
|
|
|
{
|
2014-02-11 03:59:39 +00:00
|
|
|
// Pop aClipRectIn/bounds rect
|
2013-05-01 00:42:05 +00:00
|
|
|
mRenderTarget->mDrawTarget->PopClip();
|
2014-02-11 03:59:39 +00:00
|
|
|
|
|
|
|
if (gfxPlatform::GetPlatform()->WidgetUpdateFlashing()) {
|
|
|
|
float r = float(rand()) / RAND_MAX;
|
|
|
|
float g = float(rand()) / RAND_MAX;
|
|
|
|
float b = float(rand()) / RAND_MAX;
|
|
|
|
// We're still clipped to mInvalidRegion, so just fill the bounds.
|
|
|
|
mRenderTarget->mDrawTarget->FillRect(ToRect(mInvalidRegion.GetBounds()),
|
|
|
|
ColorPattern(Color(r, g, b, 0.2f)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pop aInvalidregion
|
2013-11-21 19:25:16 +00:00
|
|
|
mRenderTarget->mDrawTarget->PopClip();
|
2013-05-01 00:42:05 +00:00
|
|
|
|
2013-11-21 19:25:16 +00:00
|
|
|
// Note: Most platforms require us to buffer drawing to the widget surface.
|
|
|
|
// That's why we don't draw to mDrawTarget directly.
|
2013-09-27 00:37:19 +00:00
|
|
|
RefPtr<SourceSurface> source = mRenderTarget->mDrawTarget->Snapshot();
|
2013-11-21 19:25:16 +00:00
|
|
|
RefPtr<DrawTarget> dest(mCopyTarget ? mCopyTarget : mDrawTarget);
|
|
|
|
|
|
|
|
// The source DrawTarget is clipped to the invalidation region, so we have
|
|
|
|
// to copy the individual rectangles in the region or else we'll draw blank
|
|
|
|
// pixels.
|
|
|
|
nsIntRegionRectIterator iter(mInvalidRegion);
|
|
|
|
for (const nsIntRect *r = iter.Next(); r; r = iter.Next()) {
|
|
|
|
dest->CopySurface(source,
|
|
|
|
IntRect(r->x - mInvalidRect.x, r->y - mInvalidRect.y, r->width, r->height),
|
|
|
|
IntPoint(r->x, r->y));
|
|
|
|
}
|
|
|
|
if (!mCopyTarget) {
|
2013-07-09 04:21:05 +00:00
|
|
|
mWidget->EndRemoteDrawing();
|
2013-05-01 00:42:05 +00:00
|
|
|
}
|
2013-11-21 19:25:16 +00:00
|
|
|
|
2013-07-09 04:21:05 +00:00
|
|
|
mDrawTarget = nullptr;
|
|
|
|
mRenderTarget = nullptr;
|
2013-05-01 00:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicCompositor::AbortFrame()
|
|
|
|
{
|
2013-11-21 19:25:16 +00:00
|
|
|
mRenderTarget->mDrawTarget->PopClip();
|
2013-07-09 04:21:05 +00:00
|
|
|
mRenderTarget->mDrawTarget->PopClip();
|
|
|
|
mDrawTarget = nullptr;
|
|
|
|
mRenderTarget = nullptr;
|
2013-05-01 00:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|