2012-06-29 06:01:34 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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 23:17:23 +00:00
|
|
|
#include <stdint.h> // for uint32_t
|
|
|
|
#include <stdlib.h> // for rand, RAND_MAX
|
|
|
|
#include <sys/types.h> // for int32_t
|
|
|
|
#include "BasicContainerLayer.h" // for BasicContainerLayer
|
|
|
|
#include "BasicLayersImpl.h" // for ToData, BasicReadbackLayer, etc
|
2013-08-22 07:11:51 +00:00
|
|
|
#include "GeckoProfiler.h" // for PROFILER_LABEL
|
2013-08-11 23:17:23 +00:00
|
|
|
#include "ImageContainer.h" // for ImageFactory
|
|
|
|
#include "Layers.h" // for Layer, ContainerLayer, etc
|
|
|
|
#include "ReadbackLayer.h" // for ReadbackLayer
|
|
|
|
#include "ReadbackProcessor.h" // for ReadbackProcessor
|
|
|
|
#include "RenderTrace.h" // for RenderTraceLayers, etc
|
|
|
|
#include "basic/BasicImplData.h" // for BasicImplData
|
|
|
|
#include "basic/BasicLayers.h" // for BasicLayerManager, etc
|
|
|
|
#include "gfx3DMatrix.h" // for gfx3DMatrix
|
|
|
|
#include "gfxASurface.h" // for gfxASurface, etc
|
|
|
|
#include "gfxCachedTempSurface.h" // for gfxCachedTempSurface
|
|
|
|
#include "gfxColor.h" // for gfxRGBA
|
|
|
|
#include "gfxContext.h" // for gfxContext, etc
|
|
|
|
#include "gfxImageSurface.h" // for gfxImageSurface
|
|
|
|
#include "gfxMatrix.h" // for gfxMatrix
|
|
|
|
#include "gfxPlatform.h" // for gfxPlatform
|
|
|
|
#include "gfxPoint.h" // for gfxIntSize, gfxPoint
|
|
|
|
#include "gfxRect.h" // for gfxRect
|
|
|
|
#include "gfxUtils.h" // for gfxUtils
|
2013-12-20 16:46:28 +00:00
|
|
|
#include "gfx2DGlue.h" // for thebes --> moz2d transition
|
2013-08-11 23:17:23 +00:00
|
|
|
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
|
|
|
|
#include "mozilla/WidgetUtils.h" // for ScreenRotation
|
|
|
|
#include "mozilla/gfx/2D.h" // for DrawTarget
|
|
|
|
#include "mozilla/gfx/BasePoint.h" // for BasePoint
|
|
|
|
#include "mozilla/gfx/BaseRect.h" // for BaseRect
|
|
|
|
#include "mozilla/gfx/Matrix.h" // for Matrix
|
|
|
|
#include "mozilla/gfx/Rect.h" // for IntRect, Rect
|
|
|
|
#include "mozilla/layers/LayersTypes.h" // for BufferMode::BUFFER_NONE, etc
|
|
|
|
#include "mozilla/mozalloc.h" // for operator new
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "nsDebug.h" // for NS_ASSERTION, etc
|
|
|
|
#include "nsISupportsImpl.h" // for gfxContext::Release, etc
|
|
|
|
#include "nsPoint.h" // for nsIntPoint
|
|
|
|
#include "nsRect.h" // for nsIntRect
|
|
|
|
#include "nsRegion.h" // for nsIntRegion, etc
|
|
|
|
#include "nsTArray.h" // for nsAutoTArray
|
|
|
|
#include "nsTraceRefcnt.h" // for MOZ_COUNT_CTOR, etc
|
2012-06-29 06:01:34 +00:00
|
|
|
#define PIXMAN_DONT_DEFINE_STDINT
|
2013-08-11 23:17:23 +00:00
|
|
|
#include "pixman.h" // for pixman_f_transform, etc
|
|
|
|
|
|
|
|
class nsIWidget;
|
2012-10-04 18:45:16 +00:00
|
|
|
|
2012-09-25 04:15:18 +00:00
|
|
|
using namespace mozilla::dom;
|
2012-06-29 06:01:34 +00:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2012-07-12 12:51:57 +00:00
|
|
|
namespace layers {
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clips to the smallest device-pixel-aligned rectangle containing aRect
|
|
|
|
* in user space.
|
|
|
|
* Returns true if the clip is "perfect", i.e. we actually clipped exactly to
|
|
|
|
* aRect.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
ClipToContain(gfxContext* aContext, const nsIntRect& aRect)
|
|
|
|
{
|
|
|
|
gfxRect userRect(aRect.x, aRect.y, aRect.width, aRect.height);
|
|
|
|
gfxRect deviceRect = aContext->UserToDevice(userRect);
|
|
|
|
deviceRect.RoundOut();
|
|
|
|
|
|
|
|
gfxMatrix currentMatrix = aContext->CurrentMatrix();
|
|
|
|
aContext->IdentityMatrix();
|
|
|
|
aContext->NewPath();
|
|
|
|
aContext->Rectangle(deviceRect);
|
|
|
|
aContext->Clip();
|
|
|
|
aContext->SetMatrix(currentMatrix);
|
|
|
|
|
|
|
|
return aContext->DeviceToUser(deviceRect).IsEqualInterior(userRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxContext>
|
|
|
|
BasicLayerManager::PushGroupForLayer(gfxContext* aContext, Layer* aLayer,
|
|
|
|
const nsIntRegion& aRegion,
|
|
|
|
bool* aNeedsClipToVisibleRegion)
|
|
|
|
{
|
|
|
|
// If we need to call PushGroup, we should clip to the smallest possible
|
|
|
|
// area first to minimize the size of the temporary surface.
|
|
|
|
bool didCompleteClip = ClipToContain(aContext, aRegion.GetBounds());
|
|
|
|
|
|
|
|
nsRefPtr<gfxContext> result;
|
|
|
|
if (aLayer->CanUseOpaqueSurface() &&
|
|
|
|
((didCompleteClip && aRegion.GetNumRects() == 1) ||
|
|
|
|
!aContext->CurrentMatrix().HasNonIntegerTranslation())) {
|
2014-01-23 18:26:40 +00:00
|
|
|
// If the layer is opaque in its visible region we can push a gfxContentType::COLOR
|
2012-06-29 06:01:34 +00:00
|
|
|
// group. We need to make sure that only pixels inside the layer's visible
|
|
|
|
// region are copied back to the destination. Remember if we've already
|
|
|
|
// clipped precisely to the visible region.
|
|
|
|
*aNeedsClipToVisibleRegion = !didCompleteClip || aRegion.GetNumRects() > 1;
|
2013-11-27 00:29:45 +00:00
|
|
|
MOZ_ASSERT(!aContext->IsCairo());
|
2014-01-23 18:26:40 +00:00
|
|
|
result = PushGroupWithCachedSurface(aContext, gfxContentType::COLOR);
|
2012-06-29 06:01:34 +00:00
|
|
|
} else {
|
|
|
|
*aNeedsClipToVisibleRegion = false;
|
|
|
|
result = aContext;
|
2012-08-01 10:03:42 +00:00
|
|
|
if (aLayer->GetContentFlags() & Layer::CONTENT_COMPONENT_ALPHA) {
|
2014-01-23 18:26:40 +00:00
|
|
|
aContext->PushGroupAndCopyBackground(gfxContentType::COLOR_ALPHA);
|
2012-08-01 10:03:42 +00:00
|
|
|
} else {
|
2014-01-23 18:26:40 +00:00
|
|
|
aContext->PushGroup(gfxContentType::COLOR_ALPHA);
|
2012-08-01 10:03:42 +00:00
|
|
|
}
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
return result.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsIntRect
|
|
|
|
ToOutsideIntRect(const gfxRect &aRect)
|
|
|
|
{
|
|
|
|
gfxRect r = aRect;
|
|
|
|
r.RoundOut();
|
|
|
|
return nsIntRect(r.X(), r.Y(), r.Width(), r.Height());
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsIntRect
|
|
|
|
ToInsideIntRect(const gfxRect& aRect)
|
|
|
|
{
|
|
|
|
gfxRect r = aRect;
|
|
|
|
r.RoundIn();
|
|
|
|
return nsIntRect(r.X(), r.Y(), r.Width(), r.Height());
|
|
|
|
}
|
|
|
|
|
2012-09-10 22:31:38 +00:00
|
|
|
// A context helper for BasicLayerManager::PaintLayer() that holds all the
|
|
|
|
// painting context together in a data structure so it can be easily passed
|
|
|
|
// around. It also uses ensures that the Transform and Opaque rect are restored
|
|
|
|
// to their former state on destruction.
|
|
|
|
|
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 09:20:52 +00:00
|
|
|
class PaintLayerContext {
|
2012-09-10 22:31:38 +00:00
|
|
|
public:
|
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 09:20:52 +00:00
|
|
|
PaintLayerContext(gfxContext* aTarget, Layer* aLayer,
|
|
|
|
LayerManager::DrawThebesLayerCallback aCallback,
|
|
|
|
void* aCallbackData, ReadbackProcessor* aReadback)
|
2012-09-10 22:31:38 +00:00
|
|
|
: mTarget(aTarget)
|
|
|
|
, mTargetMatrixSR(aTarget)
|
|
|
|
, mLayer(aLayer)
|
|
|
|
, mCallback(aCallback)
|
|
|
|
, mCallbackData(aCallbackData)
|
|
|
|
, mReadback(aReadback)
|
|
|
|
, mPushedOpaqueRect(false)
|
|
|
|
{}
|
|
|
|
|
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 09:20:52 +00:00
|
|
|
~PaintLayerContext()
|
2012-09-10 22:31:38 +00:00
|
|
|
{
|
|
|
|
// Matrix is restored by mTargetMatrixSR
|
|
|
|
if (mPushedOpaqueRect)
|
|
|
|
{
|
|
|
|
ClearOpaqueRect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 12:32:21 +00:00
|
|
|
// Gets the effective transform and returns true if it is a 2D
|
|
|
|
// transform.
|
|
|
|
bool Setup2DTransform()
|
2012-09-10 22:31:38 +00:00
|
|
|
{
|
2014-01-25 01:49:19 +00:00
|
|
|
gfx3DMatrix effectiveTransform;
|
|
|
|
To3DMatrix(mLayer->GetEffectiveTransform(), effectiveTransform);
|
2012-09-10 22:31:38 +00:00
|
|
|
// Will return an identity matrix for 3d transforms.
|
2012-09-07 12:32:21 +00:00
|
|
|
return effectiveTransform.CanDraw2D(&mTransform);
|
|
|
|
}
|
2012-09-10 22:31:38 +00:00
|
|
|
|
2012-09-07 12:32:21 +00:00
|
|
|
// Applies the effective transform if it's 2D. If it's a 3D transform then
|
|
|
|
// it applies an identity.
|
|
|
|
void Apply2DTransform()
|
|
|
|
{
|
|
|
|
mTarget->SetMatrix(mTransform);
|
2012-09-10 22:31:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the opaque rect to match the bounds of the visible region.
|
|
|
|
void AnnotateOpaqueRect()
|
|
|
|
{
|
|
|
|
const nsIntRegion& visibleRegion = mLayer->GetEffectiveVisibleRegion();
|
|
|
|
const nsIntRect& bounds = visibleRegion.GetBounds();
|
|
|
|
|
|
|
|
if (mTarget->IsCairo()) {
|
2013-09-19 05:23:30 +00:00
|
|
|
nsRefPtr<gfxASurface> currentSurface = mTarget->CurrentSurface();
|
2012-09-10 22:31:38 +00:00
|
|
|
const gfxRect& targetOpaqueRect = currentSurface->GetOpaqueRect();
|
|
|
|
|
|
|
|
// Try to annotate currentSurface with a region of pixels that have been
|
|
|
|
// (or will be) painted opaque, if no such region is currently set.
|
|
|
|
if (targetOpaqueRect.IsEmpty() && visibleRegion.GetNumRects() == 1 &&
|
|
|
|
(mLayer->GetContentFlags() & Layer::CONTENT_OPAQUE) &&
|
|
|
|
!mTransform.HasNonAxisAlignedTransform()) {
|
|
|
|
currentSurface->SetOpaqueRect(
|
|
|
|
mTarget->UserToDevice(gfxRect(bounds.x, bounds.y, bounds.width, bounds.height)));
|
|
|
|
mPushedOpaqueRect = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DrawTarget *dt = mTarget->GetDrawTarget();
|
|
|
|
const IntRect& targetOpaqueRect = dt->GetOpaqueRect();
|
|
|
|
|
|
|
|
// Try to annotate currentSurface with a region of pixels that have been
|
|
|
|
// (or will be) painted opaque, if no such region is currently set.
|
|
|
|
if (targetOpaqueRect.IsEmpty() && visibleRegion.GetNumRects() == 1 &&
|
|
|
|
(mLayer->GetContentFlags() & Layer::CONTENT_OPAQUE) &&
|
|
|
|
!mTransform.HasNonAxisAlignedTransform()) {
|
|
|
|
|
|
|
|
gfx::Rect opaqueRect = dt->GetTransform().TransformBounds(
|
|
|
|
gfx::Rect(bounds.x, bounds.y, bounds.width, bounds.height));
|
|
|
|
opaqueRect.RoundIn();
|
|
|
|
IntRect intOpaqueRect;
|
|
|
|
if (opaqueRect.ToIntRect(&intOpaqueRect)) {
|
|
|
|
mTarget->GetDrawTarget()->SetOpaqueRect(intOpaqueRect);
|
|
|
|
mPushedOpaqueRect = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the Opaque rect. Although this doesn't really restore it to it's
|
|
|
|
// previous state it will happen on the exit path of the PaintLayer() so when
|
|
|
|
// painting is complete the opaque rect qill be clear.
|
|
|
|
void ClearOpaqueRect() {
|
|
|
|
if (mTarget->IsCairo()) {
|
|
|
|
nsRefPtr<gfxASurface> currentSurface = mTarget->CurrentSurface();
|
|
|
|
currentSurface->SetOpaqueRect(gfxRect());
|
|
|
|
} else {
|
|
|
|
mTarget->GetDrawTarget()->SetOpaqueRect(IntRect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxContext* mTarget;
|
|
|
|
gfxContextMatrixAutoSaveRestore mTargetMatrixSR;
|
|
|
|
Layer* mLayer;
|
|
|
|
LayerManager::DrawThebesLayerCallback mCallback;
|
|
|
|
void* mCallbackData;
|
|
|
|
ReadbackProcessor* mReadback;
|
|
|
|
gfxMatrix mTransform;
|
|
|
|
bool mPushedOpaqueRect;
|
|
|
|
};
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
BasicLayerManager::BasicLayerManager(nsIWidget* aWidget) :
|
|
|
|
mPhase(PHASE_NONE),
|
|
|
|
mWidget(aWidget)
|
2014-01-23 18:26:41 +00:00
|
|
|
, mDoubleBuffering(BufferMode::BUFFER_NONE), mUsingDefaultTarget(false)
|
2012-06-29 06:01:34 +00:00
|
|
|
, mCachedSurfaceInUse(false)
|
|
|
|
, mTransactionIncomplete(false)
|
2012-09-25 04:15:18 +00:00
|
|
|
, mCompositorMightResample(false)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(BasicLayerManager);
|
|
|
|
NS_ASSERTION(aWidget, "Must provide a widget");
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicLayerManager::BasicLayerManager() :
|
|
|
|
mPhase(PHASE_NONE),
|
2012-07-30 14:20:58 +00:00
|
|
|
mWidget(nullptr)
|
2014-01-23 18:26:41 +00:00
|
|
|
, mDoubleBuffering(BufferMode::BUFFER_NONE), mUsingDefaultTarget(false)
|
2012-06-29 06:01:34 +00:00
|
|
|
, mCachedSurfaceInUse(false)
|
|
|
|
, mTransactionIncomplete(false)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(BasicLayerManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicLayerManager::~BasicLayerManager()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!InTransaction(), "Died during transaction?");
|
|
|
|
|
|
|
|
ClearCachedResources();
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
mRoot = nullptr;
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
MOZ_COUNT_DTOR(BasicLayerManager);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-15 01:10:40 +00:00
|
|
|
BasicLayerManager::SetDefaultTarget(gfxContext* aContext)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(!InTransaction(),
|
|
|
|
"Must set default target outside transaction");
|
|
|
|
mDefaultTarget = aContext;
|
2012-08-15 01:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::SetDefaultTargetConfiguration(BufferMode aDoubleBuffering, ScreenRotation aRotation)
|
|
|
|
{
|
2012-06-29 06:01:34 +00:00
|
|
|
mDoubleBuffering = aDoubleBuffering;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::BeginTransaction()
|
|
|
|
{
|
2012-08-15 21:55:38 +00:00
|
|
|
mInTransaction = true;
|
2012-06-29 06:01:34 +00:00
|
|
|
mUsingDefaultTarget = true;
|
|
|
|
BeginTransactionWithTarget(mDefaultTarget);
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxContext>
|
|
|
|
BasicLayerManager::PushGroupWithCachedSurface(gfxContext *aTarget,
|
2013-09-24 20:45:13 +00:00
|
|
|
gfxContentType aContent)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
|
|
|
nsRefPtr<gfxContext> ctx;
|
|
|
|
// We can't cache Azure DrawTargets at this point.
|
|
|
|
if (!mCachedSurfaceInUse && aTarget->IsCairo()) {
|
|
|
|
gfxContextMatrixAutoSaveRestore saveMatrix(aTarget);
|
|
|
|
aTarget->IdentityMatrix();
|
|
|
|
|
|
|
|
nsRefPtr<gfxASurface> currentSurf = aTarget->CurrentSurface();
|
|
|
|
gfxRect clip = aTarget->GetClipExtents();
|
|
|
|
clip.RoundOut();
|
|
|
|
|
|
|
|
ctx = mCachedSurface.Get(aContent, clip, currentSurf);
|
|
|
|
|
|
|
|
if (ctx) {
|
|
|
|
mCachedSurfaceInUse = true;
|
|
|
|
/* Align our buffer for the original surface */
|
|
|
|
ctx->SetMatrix(saveMatrix.Matrix());
|
|
|
|
return ctx.forget();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = aTarget;
|
|
|
|
ctx->PushGroup(aContent);
|
|
|
|
return ctx.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::PopGroupToSourceWithCachedSurface(gfxContext *aTarget, gfxContext *aPushed)
|
|
|
|
{
|
|
|
|
if (!aTarget)
|
|
|
|
return;
|
2013-09-19 05:23:30 +00:00
|
|
|
if (aTarget->IsCairo()) {
|
|
|
|
nsRefPtr<gfxASurface> current = aPushed->CurrentSurface();
|
|
|
|
if (mCachedSurface.IsSurface(current)) {
|
|
|
|
gfxContextMatrixAutoSaveRestore saveMatrix(aTarget);
|
|
|
|
aTarget->IdentityMatrix();
|
|
|
|
aTarget->SetSource(current);
|
|
|
|
mCachedSurfaceInUse = false;
|
|
|
|
return;
|
|
|
|
}
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
2013-09-19 05:23:30 +00:00
|
|
|
aTarget->PopGroupToSource();
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::BeginTransactionWithTarget(gfxContext* aTarget)
|
|
|
|
{
|
2012-08-15 21:55:38 +00:00
|
|
|
mInTransaction = true;
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
#ifdef MOZ_LAYERS_HAVE_LOG
|
|
|
|
MOZ_LAYERS_LOG(("[----- BeginTransaction"));
|
|
|
|
Log();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_ASSERTION(!InTransaction(), "Nested transactions not allowed");
|
|
|
|
mPhase = PHASE_CONSTRUCTION;
|
|
|
|
mTarget = aTarget;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
TransformIntRect(nsIntRect& aRect, const gfxMatrix& aMatrix,
|
|
|
|
nsIntRect (*aRoundMethod)(const gfxRect&))
|
|
|
|
{
|
|
|
|
gfxRect gr = gfxRect(aRect.x, aRect.y, aRect.width, aRect.height);
|
|
|
|
gr = aMatrix.TransformBounds(gr);
|
|
|
|
aRect = (*aRoundMethod)(gr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function assumes that GetEffectiveTransform transforms
|
|
|
|
* all layers to the same coordinate system (the "root coordinate system").
|
|
|
|
* It can't be used as is by accelerated layers because of intermediate surfaces.
|
|
|
|
* This must set the hidden flag to true or false on *all* layers in the subtree.
|
|
|
|
* It also sets the operator for all layers to "OVER", and call
|
|
|
|
* SetDrawAtomically(false).
|
|
|
|
* It clears mClipToVisibleRegion on all layers.
|
|
|
|
* @param aClipRect the cliprect, in the root coordinate system. We assume
|
|
|
|
* that any layer drawing is clipped to this rect. It is therefore not
|
|
|
|
* allowed to add to the opaque region outside that rect.
|
|
|
|
* @param aDirtyRect the dirty rect that will be painted, in the root
|
|
|
|
* coordinate system. Layers outside this rect should be hidden.
|
|
|
|
* @param aOpaqueRegion the opaque region covering aLayer, in the
|
|
|
|
* root coordinate system.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
ALLOW_OPAQUE = 0x01,
|
|
|
|
};
|
|
|
|
static void
|
|
|
|
MarkLayersHidden(Layer* aLayer, const nsIntRect& aClipRect,
|
|
|
|
const nsIntRect& aDirtyRect,
|
|
|
|
nsIntRegion& aOpaqueRegion,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFlags)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
|
|
|
nsIntRect newClipRect(aClipRect);
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t newFlags = aFlags;
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
// Allow aLayer or aLayer's descendants to cover underlying layers
|
|
|
|
// only if it's opaque.
|
|
|
|
if (aLayer->GetOpacity() != 1.0f) {
|
|
|
|
newFlags &= ~ALLOW_OPAQUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const nsIntRect* clipRect = aLayer->GetEffectiveClipRect();
|
|
|
|
if (clipRect) {
|
|
|
|
nsIntRect cr = *clipRect;
|
|
|
|
// clipRect is in the container's coordinate system. Get it into the
|
|
|
|
// global coordinate system.
|
|
|
|
if (aLayer->GetParent()) {
|
|
|
|
gfxMatrix tr;
|
2014-01-25 01:49:19 +00:00
|
|
|
gfx3DMatrix effectiveTransform;
|
|
|
|
gfx::To3DMatrix(aLayer->GetParent()->GetEffectiveTransform(), effectiveTransform);
|
|
|
|
if (effectiveTransform.CanDraw2D(&tr)) {
|
2012-06-29 06:01:34 +00:00
|
|
|
// Clip rect is applied after aLayer's transform, i.e., in the coordinate
|
|
|
|
// system of aLayer's parent.
|
|
|
|
TransformIntRect(cr, tr, ToInsideIntRect);
|
|
|
|
} else {
|
|
|
|
cr.SetRect(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newClipRect.IntersectRect(newClipRect, cr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicImplData* data = ToData(aLayer);
|
|
|
|
data->SetOperator(gfxContext::OPERATOR_OVER);
|
|
|
|
data->SetClipToVisibleRegion(false);
|
|
|
|
data->SetDrawAtomically(false);
|
|
|
|
|
|
|
|
if (!aLayer->AsContainerLayer()) {
|
|
|
|
gfxMatrix transform;
|
2014-01-25 01:49:19 +00:00
|
|
|
gfx3DMatrix effectiveTransform;
|
|
|
|
gfx::To3DMatrix(aLayer->GetEffectiveTransform(), effectiveTransform);
|
|
|
|
if (!effectiveTransform.CanDraw2D(&transform)) {
|
2012-06-29 06:01:34 +00:00
|
|
|
data->SetHidden(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIntRegion region = aLayer->GetEffectiveVisibleRegion();
|
|
|
|
nsIntRect r = region.GetBounds();
|
|
|
|
TransformIntRect(r, transform, ToOutsideIntRect);
|
|
|
|
r.IntersectRect(r, aDirtyRect);
|
|
|
|
data->SetHidden(aOpaqueRegion.Contains(r));
|
|
|
|
|
|
|
|
// Allow aLayer to cover underlying layers only if aLayer's
|
|
|
|
// content is opaque
|
|
|
|
if ((aLayer->GetContentFlags() & Layer::CONTENT_OPAQUE) &&
|
|
|
|
(newFlags & ALLOW_OPAQUE)) {
|
|
|
|
nsIntRegionRectIterator it(region);
|
|
|
|
while (const nsIntRect* sr = it.Next()) {
|
|
|
|
r = *sr;
|
|
|
|
TransformIntRect(r, transform, ToInsideIntRect);
|
|
|
|
|
|
|
|
r.IntersectRect(r, newClipRect);
|
|
|
|
aOpaqueRegion.Or(aOpaqueRegion, r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Layer* child = aLayer->GetLastChild();
|
|
|
|
bool allHidden = true;
|
|
|
|
for (; child; child = child->GetPrevSibling()) {
|
|
|
|
MarkLayersHidden(child, newClipRect, aDirtyRect, aOpaqueRegion, newFlags);
|
|
|
|
if (!ToData(child)->IsHidden()) {
|
|
|
|
allHidden = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data->SetHidden(allHidden);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function assumes that GetEffectiveTransform transforms
|
|
|
|
* all layers to the same coordinate system (the "root coordinate system").
|
|
|
|
* MarkLayersHidden must be called before calling this.
|
|
|
|
* @param aVisibleRect the rectangle of aLayer that is visible (i.e. not
|
|
|
|
* clipped and in the dirty rect), in the root coordinate system.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
ApplyDoubleBuffering(Layer* aLayer, const nsIntRect& aVisibleRect)
|
|
|
|
{
|
|
|
|
BasicImplData* data = ToData(aLayer);
|
|
|
|
if (data->IsHidden())
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsIntRect newVisibleRect(aVisibleRect);
|
|
|
|
|
|
|
|
{
|
|
|
|
const nsIntRect* clipRect = aLayer->GetEffectiveClipRect();
|
|
|
|
if (clipRect) {
|
|
|
|
nsIntRect cr = *clipRect;
|
|
|
|
// clipRect is in the container's coordinate system. Get it into the
|
|
|
|
// global coordinate system.
|
|
|
|
if (aLayer->GetParent()) {
|
|
|
|
gfxMatrix tr;
|
2014-01-25 01:49:19 +00:00
|
|
|
gfx3DMatrix effectiveTransform;
|
|
|
|
gfx::To3DMatrix(aLayer->GetParent()->GetEffectiveTransform(), effectiveTransform);
|
|
|
|
if (effectiveTransform.CanDraw2D(&tr)) {
|
2012-06-29 06:01:34 +00:00
|
|
|
NS_ASSERTION(!tr.HasNonIntegerTranslation(),
|
|
|
|
"Parent can only have an integer translation");
|
2012-08-22 15:56:38 +00:00
|
|
|
cr += nsIntPoint(int32_t(tr.x0), int32_t(tr.y0));
|
2012-06-29 06:01:34 +00:00
|
|
|
} else {
|
|
|
|
NS_ERROR("Parent can only have an integer translation");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newVisibleRect.IntersectRect(newVisibleRect, cr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicContainerLayer* container =
|
|
|
|
static_cast<BasicContainerLayer*>(aLayer->AsContainerLayer());
|
|
|
|
// Layers that act as their own backbuffers should be drawn to the destination
|
|
|
|
// using OPERATOR_SOURCE to ensure that alpha values in a transparent window
|
|
|
|
// are cleared. This can also be faster than OPERATOR_OVER.
|
|
|
|
if (!container) {
|
|
|
|
data->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
data->SetDrawAtomically(true);
|
|
|
|
} else {
|
|
|
|
if (container->UseIntermediateSurface() ||
|
|
|
|
!container->ChildrenPartitionVisibleRegion(newVisibleRect)) {
|
|
|
|
// We need to double-buffer this container.
|
|
|
|
data->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
container->ForceIntermediateSurface();
|
|
|
|
} else {
|
|
|
|
// Tell the children to clip to their visible regions so our assumption
|
|
|
|
// that they don't paint outside their visible regions is valid!
|
|
|
|
for (Layer* child = aLayer->GetFirstChild(); child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
ToData(child)->SetClipToVisibleRegion(true);
|
|
|
|
ApplyDoubleBuffering(child, newVisibleRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::EndTransaction(DrawThebesLayerCallback aCallback,
|
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags)
|
|
|
|
{
|
2012-08-15 21:55:38 +00:00
|
|
|
mInTransaction = false;
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
EndTransactionInternal(aCallback, aCallbackData, aFlags);
|
|
|
|
}
|
2012-07-20 04:53:55 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::AbortTransaction()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(InConstruction(), "Should be in construction phase");
|
|
|
|
mPhase = PHASE_NONE;
|
|
|
|
mUsingDefaultTarget = false;
|
2012-08-15 21:55:38 +00:00
|
|
|
mInTransaction = false;
|
2012-07-20 04:53:55 +00:00
|
|
|
}
|
2012-06-29 06:01:34 +00:00
|
|
|
|
2013-08-22 16:54:05 +00:00
|
|
|
static uint16_t sFrameCount = 0;
|
|
|
|
void
|
|
|
|
BasicLayerManager::RenderDebugOverlay()
|
|
|
|
{
|
|
|
|
if (!gfxPlatform::DrawFrameCounter()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
profiler_set_frame_number(sFrameCount);
|
|
|
|
|
|
|
|
uint16_t frameNumber = sFrameCount;
|
|
|
|
const uint16_t bitWidth = 3;
|
|
|
|
for (size_t i = 0; i < 16; i++) {
|
|
|
|
|
|
|
|
gfxRGBA bitColor;
|
|
|
|
if ((frameNumber >> i) & 0x1) {
|
|
|
|
bitColor = gfxRGBA(0, 0, 0, 1.0);
|
|
|
|
} else {
|
|
|
|
bitColor = gfxRGBA(1.0, 1.0, 1.0, 1.0);
|
|
|
|
}
|
|
|
|
mTarget->NewPath();
|
|
|
|
mTarget->SetColor(bitColor);
|
|
|
|
mTarget->Rectangle(gfxRect(bitWidth*i, 0, bitWidth, bitWidth));
|
|
|
|
mTarget->Fill();
|
|
|
|
}
|
|
|
|
// We intentionally overflow at 2^16.
|
|
|
|
sFrameCount++;
|
|
|
|
}
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
bool
|
|
|
|
BasicLayerManager::EndTransactionInternal(DrawThebesLayerCallback aCallback,
|
|
|
|
void* aCallbackData,
|
|
|
|
EndTransactionFlags aFlags)
|
|
|
|
{
|
2013-03-16 04:47:02 +00:00
|
|
|
PROFILER_LABEL("BasicLayerManager", "EndTransactionInternal");
|
2012-06-29 06:01:34 +00:00
|
|
|
#ifdef MOZ_LAYERS_HAVE_LOG
|
|
|
|
MOZ_LAYERS_LOG((" ----- (beginning paint)"));
|
|
|
|
Log();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_ASSERTION(InConstruction(), "Should be in construction phase");
|
|
|
|
mPhase = PHASE_DRAWING;
|
|
|
|
|
2013-10-15 03:23:21 +00:00
|
|
|
RenderTraceLayers(mRoot, "FF00");
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
mTransactionIncomplete = false;
|
|
|
|
|
2013-10-15 03:23:21 +00:00
|
|
|
if (mRoot) {
|
|
|
|
// Need to do this before we call ApplyDoubleBuffering,
|
|
|
|
// which depends on correct effective transforms
|
|
|
|
mSnapEffectiveTransforms =
|
|
|
|
mTarget ? !(mTarget->GetFlags() & gfxContext::FLAG_DISABLE_SNAPPING) : true;
|
2014-01-27 15:28:04 +00:00
|
|
|
mRoot->ComputeEffectiveTransforms(mTarget ? Matrix4x4::From2D(ToMatrix(mTarget->CurrentMatrix())) : Matrix4x4());
|
2013-10-15 03:23:21 +00:00
|
|
|
|
|
|
|
ToData(mRoot)->Validate(aCallback, aCallbackData);
|
|
|
|
if (mRoot->GetMaskLayer()) {
|
|
|
|
ToData(mRoot->GetMaskLayer())->Validate(aCallback, aCallbackData);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFlags & END_NO_COMPOSITE) {
|
|
|
|
// Apply pending tree updates before recomputing effective
|
|
|
|
// properties.
|
|
|
|
mRoot->ApplyPendingUpdatesToSubtree();
|
2012-11-06 22:39:35 +00:00
|
|
|
}
|
2012-08-13 10:10:10 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 03:23:21 +00:00
|
|
|
if (mTarget && mRoot &&
|
|
|
|
!(aFlags & END_NO_IMMEDIATE_REDRAW) &&
|
|
|
|
!(aFlags & END_NO_COMPOSITE)) {
|
2012-06-29 06:01:34 +00:00
|
|
|
nsIntRect clipRect;
|
2013-10-15 03:23:21 +00:00
|
|
|
|
|
|
|
{
|
2012-06-29 06:01:34 +00:00
|
|
|
gfxContextMatrixAutoSaveRestore save(mTarget);
|
|
|
|
mTarget->SetMatrix(gfxMatrix());
|
|
|
|
clipRect = ToOutsideIntRect(mTarget->GetClipExtents());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsRetained()) {
|
|
|
|
nsIntRegion region;
|
|
|
|
MarkLayersHidden(mRoot, clipRect, clipRect, region, ALLOW_OPAQUE);
|
2014-01-23 18:26:41 +00:00
|
|
|
if (mUsingDefaultTarget && mDoubleBuffering != BufferMode::BUFFER_NONE) {
|
2012-06-29 06:01:34 +00:00
|
|
|
ApplyDoubleBuffering(mRoot, clipRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-15 03:23:21 +00:00
|
|
|
PaintLayer(mTarget, mRoot, aCallback, aCallbackData, nullptr);
|
|
|
|
if (mWidget) {
|
|
|
|
FlashWidgetUpdateArea(mTarget);
|
2012-07-17 17:03:51 +00:00
|
|
|
}
|
2013-10-15 03:23:21 +00:00
|
|
|
RenderDebugOverlay();
|
2013-11-27 07:32:19 +00:00
|
|
|
RecordFrame();
|
|
|
|
PostPresent();
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
if (!mTransactionIncomplete) {
|
|
|
|
// Clear out target if we have a complete transaction.
|
2012-07-30 14:20:58 +00:00
|
|
|
mTarget = nullptr;
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef MOZ_LAYERS_HAVE_LOG
|
|
|
|
Log();
|
|
|
|
MOZ_LAYERS_LOG(("]----- EndTransaction"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Go back to the construction phase if the transaction isn't complete.
|
|
|
|
// Layout will update the layer tree and call EndTransaction().
|
|
|
|
mPhase = mTransactionIncomplete ? PHASE_CONSTRUCTION : PHASE_NONE;
|
|
|
|
|
|
|
|
if (!mTransactionIncomplete) {
|
|
|
|
// This is still valid if the transaction was incomplete.
|
|
|
|
mUsingDefaultTarget = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(!aCallback || !mTransactionIncomplete,
|
|
|
|
"If callback is not null, transaction must be complete");
|
|
|
|
|
|
|
|
// XXX - We should probably assert here that for an incomplete transaction
|
|
|
|
// out target is the default target.
|
|
|
|
|
|
|
|
return !mTransactionIncomplete;
|
|
|
|
}
|
|
|
|
|
2012-07-17 17:03:51 +00:00
|
|
|
void
|
|
|
|
BasicLayerManager::FlashWidgetUpdateArea(gfxContext *aContext)
|
|
|
|
{
|
2013-07-03 12:00:40 +00:00
|
|
|
if (gfxPlatform::GetPlatform()->WidgetUpdateFlashing()) {
|
2012-07-17 17:03:51 +00:00
|
|
|
float r = float(rand()) / RAND_MAX;
|
|
|
|
float g = float(rand()) / RAND_MAX;
|
|
|
|
float b = float(rand()) / RAND_MAX;
|
|
|
|
aContext->SetColor(gfxRGBA(r, g, b, 0.2));
|
|
|
|
aContext->Paint();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
bool
|
2012-08-13 10:10:10 +00:00
|
|
|
BasicLayerManager::EndEmptyTransaction(EndTransactionFlags aFlags)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
2012-08-15 21:55:38 +00:00
|
|
|
mInTransaction = false;
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
if (!mRoot) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-13 10:10:10 +00:00
|
|
|
return EndTransactionInternal(nullptr, nullptr, aFlags);
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::SetRoot(Layer* aLayer)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aLayer, "Root can't be null");
|
|
|
|
NS_ASSERTION(aLayer->Manager() == this, "Wrong manager");
|
|
|
|
NS_ASSERTION(InConstruction(), "Only allowed in construction phase");
|
|
|
|
mRoot = aLayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pixman_transform
|
2013-11-18 02:07:08 +00:00
|
|
|
BasicLayerManager_Matrix3DToPixman(const gfx3DMatrix& aMatrix)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
|
|
|
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
|
2013-11-27 00:29:45 +00:00
|
|
|
PixmanTransform(const gfxImageSurface* aDest,
|
|
|
|
RefPtr<DataSourceSurface> aSrc,
|
|
|
|
const gfx3DMatrix& aTransform,
|
2012-06-29 06:01:34 +00:00
|
|
|
gfxPoint aDestOffset)
|
|
|
|
{
|
2013-12-20 16:46:28 +00:00
|
|
|
IntSize destSize = ToIntSize(aDest->GetSize());
|
2014-01-23 18:26:40 +00:00
|
|
|
pixman_image_t* dest = pixman_image_create_bits(aDest->Format() == gfxImageFormat::ARGB32 ? PIXMAN_a8r8g8b8 : PIXMAN_x8r8g8b8,
|
2012-06-29 06:01:34 +00:00
|
|
|
destSize.width,
|
|
|
|
destSize.height,
|
|
|
|
(uint32_t*)aDest->Data(),
|
|
|
|
aDest->Stride());
|
|
|
|
|
2013-11-27 00:29:45 +00:00
|
|
|
IntSize srcSize = aSrc->GetSize();
|
2014-01-10 19:06:16 +00:00
|
|
|
pixman_image_t* src = pixman_image_create_bits(aSrc->GetFormat() == SurfaceFormat::B8G8R8A8 ? PIXMAN_a8r8g8b8 : PIXMAN_x8r8g8b8,
|
2012-06-29 06:01:34 +00:00
|
|
|
srcSize.width,
|
|
|
|
srcSize.height,
|
2013-11-27 00:29:45 +00:00
|
|
|
(uint32_t*)aSrc->GetData(),
|
2012-06-29 06:01:34 +00:00
|
|
|
aSrc->Stride());
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(src && dest, "Failed to create pixman images?");
|
|
|
|
|
2013-11-18 02:07:08 +00:00
|
|
|
pixman_transform pixTransform = BasicLayerManager_Matrix3DToPixman(aTransform);
|
2012-06-29 06:01:34 +00:00
|
|
|
pixman_transform pixTransformInverted;
|
|
|
|
|
|
|
|
// If the transform is singular then nothing would be drawn anyway, return here
|
|
|
|
if (!pixman_transform_invert(&pixTransformInverted, &pixTransform)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pixman_image_set_transform(src, &pixTransformInverted);
|
|
|
|
|
|
|
|
pixman_image_composite32(PIXMAN_OP_SRC,
|
|
|
|
src,
|
2012-07-30 14:20:58 +00:00
|
|
|
nullptr,
|
2012-06-29 06:01:34 +00:00
|
|
|
dest,
|
|
|
|
aDestOffset.x,
|
|
|
|
aDestOffset.y,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
destSize.width,
|
|
|
|
destSize.height);
|
|
|
|
|
|
|
|
pixman_image_unref(dest);
|
|
|
|
pixman_image_unref(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transform a surface using a gfx3DMatrix and blit to the destination if
|
|
|
|
* it is efficient to do so.
|
|
|
|
*
|
|
|
|
* @param aSource Source surface.
|
|
|
|
* @param aDest Desintation context.
|
|
|
|
* @param aBounds Area represented by aSource.
|
|
|
|
* @param aTransform Transformation matrix.
|
2012-09-07 12:32:21 +00:00
|
|
|
* @param aDestRect Output: rectangle in which to draw returned surface on aDest
|
|
|
|
* (same size as aDest). Only filled in if this returns
|
|
|
|
* a surface.
|
2013-11-27 00:29:45 +00:00
|
|
|
* @return Transformed surface
|
2012-06-29 06:01:34 +00:00
|
|
|
*/
|
2013-11-27 00:29:45 +00:00
|
|
|
static already_AddRefed<gfxASurface>
|
|
|
|
Transform3D(RefPtr<SourceSurface> aSource,
|
|
|
|
gfxContext* aDest,
|
|
|
|
const gfxRect& aBounds,
|
|
|
|
const gfx3DMatrix& aTransform,
|
|
|
|
gfxRect& aDestRect)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
|
|
|
// Find the transformed rectangle of our layer.
|
|
|
|
gfxRect offsetRect = aTransform.TransformBounds(aBounds);
|
|
|
|
|
|
|
|
// Intersect the transformed layer with the destination rectangle.
|
|
|
|
// This is in device space since we have an identity transform set on aTarget.
|
2012-09-07 12:32:21 +00:00
|
|
|
aDestRect = aDest->GetClipExtents();
|
|
|
|
aDestRect.IntersectRect(aDestRect, offsetRect);
|
|
|
|
aDestRect.RoundOut();
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
// Create a surface the size of the transformed object.
|
|
|
|
nsRefPtr<gfxASurface> dest = aDest->CurrentSurface();
|
2013-11-27 00:29:45 +00:00
|
|
|
nsRefPtr<gfxImageSurface> destImage = new gfxImageSurface(gfxIntSize(aDestRect.width,
|
|
|
|
aDestRect.height),
|
2014-01-23 18:26:40 +00:00
|
|
|
gfxImageFormat::ARGB32);
|
2013-11-27 00:29:45 +00:00
|
|
|
gfxPoint offset = aDestRect.TopLeft();
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
// Include a translation to the correct origin.
|
|
|
|
gfx3DMatrix translation = gfx3DMatrix::Translation(aBounds.x, aBounds.y, 0);
|
|
|
|
|
|
|
|
// Transform the content and offset it such that the content begins at the origin.
|
2013-11-27 00:29:45 +00:00
|
|
|
PixmanTransform(destImage, aSource->GetDataSurface(), translation * aTransform, offset);
|
2012-06-29 06:01:34 +00:00
|
|
|
|
2012-09-07 12:32:21 +00:00
|
|
|
// If we haven't actually drawn to aDest then return our temporary image so
|
|
|
|
// that the caller can do this.
|
2013-11-27 00:29:45 +00:00
|
|
|
return destImage.forget();
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 22:31:38 +00:00
|
|
|
void
|
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 09:20:52 +00:00
|
|
|
BasicLayerManager::PaintSelfOrChildren(PaintLayerContext& aPaintContext,
|
2012-09-10 22:31:38 +00:00
|
|
|
gfxContext* aGroupTarget)
|
|
|
|
{
|
|
|
|
BasicImplData* data = ToData(aPaintContext.mLayer);
|
|
|
|
|
|
|
|
/* Only paint ourself, or our children - This optimization relies on this! */
|
|
|
|
Layer* child = aPaintContext.mLayer->GetFirstChild();
|
|
|
|
if (!child) {
|
|
|
|
if (aPaintContext.mLayer->AsThebesLayer()) {
|
|
|
|
data->PaintThebes(aGroupTarget, aPaintContext.mLayer->GetMaskLayer(),
|
|
|
|
aPaintContext.mCallback, aPaintContext.mCallbackData,
|
|
|
|
aPaintContext.mReadback);
|
|
|
|
} else {
|
|
|
|
data->Paint(aGroupTarget, aPaintContext.mLayer->GetMaskLayer());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ReadbackProcessor readback;
|
|
|
|
ContainerLayer* container =
|
|
|
|
static_cast<ContainerLayer*>(aPaintContext.mLayer);
|
|
|
|
if (IsRetained()) {
|
|
|
|
readback.BuildUpdates(container);
|
|
|
|
}
|
|
|
|
nsAutoTArray<Layer*, 12> children;
|
|
|
|
container->SortChildrenBy3DZOrder(children);
|
|
|
|
for (uint32_t i = 0; i < children.Length(); i++) {
|
|
|
|
PaintLayer(aGroupTarget, children.ElementAt(i), aPaintContext.mCallback,
|
|
|
|
aPaintContext.mCallbackData, &readback);
|
|
|
|
if (mTransactionIncomplete)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-29 06:01:34 +00:00
|
|
|
|
2012-09-10 22:31:38 +00:00
|
|
|
void
|
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 09:20:52 +00:00
|
|
|
BasicLayerManager::FlushGroup(PaintLayerContext& aPaintContext, bool aNeedsClipToVisibleRegion)
|
2012-09-10 22:31:38 +00:00
|
|
|
{
|
|
|
|
// If we're doing our own double-buffering, we need to avoid drawing
|
|
|
|
// the results of an incomplete transaction to the destination surface ---
|
|
|
|
// that could cause flicker. Double-buffering is implemented using a
|
|
|
|
// temporary surface for one or more container layers, so we need to stop
|
|
|
|
// those temporary surfaces from being composited to aTarget.
|
|
|
|
// ApplyDoubleBuffering guarantees that this container layer can't
|
|
|
|
// intersect any other leaf layers, so if the transaction is not yet marked
|
|
|
|
// incomplete, the contents of this container layer are the final contents
|
|
|
|
// for the window.
|
|
|
|
if (!mTransactionIncomplete) {
|
|
|
|
if (aNeedsClipToVisibleRegion) {
|
|
|
|
gfxUtils::ClipToRegion(aPaintContext.mTarget,
|
|
|
|
aPaintContext.mLayer->GetEffectiveVisibleRegion());
|
|
|
|
}
|
|
|
|
BasicContainerLayer* container = static_cast<BasicContainerLayer*>(aPaintContext.mLayer);
|
|
|
|
AutoSetOperator setOperator(aPaintContext.mTarget, container->GetOperator());
|
|
|
|
PaintWithMask(aPaintContext.mTarget, aPaintContext.mLayer->GetEffectiveOpacity(),
|
2013-10-15 03:23:21 +00:00
|
|
|
aPaintContext.mLayer->GetMaskLayer());
|
2012-09-10 22:31:38 +00:00
|
|
|
}
|
|
|
|
}
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
BasicLayerManager::PaintLayer(gfxContext* aTarget,
|
|
|
|
Layer* aLayer,
|
|
|
|
DrawThebesLayerCallback aCallback,
|
|
|
|
void* aCallbackData,
|
|
|
|
ReadbackProcessor* aReadback)
|
|
|
|
{
|
2013-03-16 00:48:56 +00:00
|
|
|
PROFILER_LABEL("BasicLayerManager", "PaintLayer");
|
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 09:20:52 +00:00
|
|
|
PaintLayerContext paintLayerContext(aTarget, aLayer, aCallback, aCallbackData, aReadback);
|
2012-09-10 22:31:38 +00:00
|
|
|
|
2012-11-29 22:11:04 +00:00
|
|
|
// Don't attempt to paint layers with a singular transform, cairo will
|
|
|
|
// just throw an error.
|
|
|
|
if (aLayer->GetEffectiveTransform().IsSingular()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
RenderTraceScope trace("BasicLayerManager::PaintLayer", "707070");
|
|
|
|
|
|
|
|
const nsIntRect* clipRect = aLayer->GetEffectiveClipRect();
|
|
|
|
// aLayer might not be a container layer, but if so we take care not to use
|
|
|
|
// the container variable
|
|
|
|
BasicContainerLayer* container = static_cast<BasicContainerLayer*>(aLayer);
|
|
|
|
bool needsGroup = aLayer->GetFirstChild() &&
|
|
|
|
container->UseIntermediateSurface();
|
|
|
|
BasicImplData* data = ToData(aLayer);
|
|
|
|
bool needsClipToVisibleRegion =
|
|
|
|
data->GetClipToVisibleRegion() && !aLayer->AsThebesLayer();
|
|
|
|
NS_ASSERTION(needsGroup || !aLayer->GetFirstChild() ||
|
|
|
|
container->GetOperator() == gfxContext::OPERATOR_OVER,
|
|
|
|
"non-OVER operator should have forced UseIntermediateSurface");
|
|
|
|
NS_ASSERTION(!aLayer->GetFirstChild() || !aLayer->GetMaskLayer() ||
|
|
|
|
container->UseIntermediateSurface(),
|
|
|
|
"ContainerLayer with mask layer should force UseIntermediateSurface");
|
|
|
|
|
2012-09-10 22:31:38 +00:00
|
|
|
gfxContextAutoSaveRestore contextSR;
|
2012-09-07 12:32:21 +00:00
|
|
|
gfxMatrix transform;
|
|
|
|
// Will return an identity matrix for 3d transforms, and is handled separately below.
|
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 09:20:52 +00:00
|
|
|
bool is2D = paintLayerContext.Setup2DTransform();
|
2012-09-07 12:32:21 +00:00
|
|
|
NS_ABORT_IF_FALSE(is2D || needsGroup || !aLayer->GetFirstChild(), "Must PushGroup for 3d transforms!");
|
|
|
|
|
|
|
|
bool needsSaveRestore =
|
|
|
|
needsGroup || clipRect || needsClipToVisibleRegion || !is2D;
|
2012-06-29 06:01:34 +00:00
|
|
|
if (needsSaveRestore) {
|
2012-09-10 22:31:38 +00:00
|
|
|
contextSR.SetContext(aTarget);
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
if (clipRect) {
|
|
|
|
aTarget->NewPath();
|
2013-07-09 14:11:00 +00:00
|
|
|
aTarget->SnappedRectangle(gfxRect(clipRect->x, clipRect->y, clipRect->width, clipRect->height));
|
2012-06-29 06:01:34 +00:00
|
|
|
aTarget->Clip();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 09:20:52 +00:00
|
|
|
paintLayerContext.Apply2DTransform();
|
2012-06-29 06:01:34 +00:00
|
|
|
|
|
|
|
const nsIntRegion& visibleRegion = aLayer->GetEffectiveVisibleRegion();
|
|
|
|
// If needsGroup is true, we'll clip to the visible region after we've popped the group
|
|
|
|
if (needsClipToVisibleRegion && !needsGroup) {
|
|
|
|
gfxUtils::ClipToRegion(aTarget, visibleRegion);
|
|
|
|
// Don't need to clip to visible region again
|
|
|
|
needsClipToVisibleRegion = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is2D) {
|
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 09:20:52 +00:00
|
|
|
paintLayerContext.AnnotateOpaqueRect();
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool clipIsEmpty = !aTarget || aTarget->GetClipExtents().IsEmpty();
|
2012-09-10 22:31:38 +00:00
|
|
|
if (clipIsEmpty) {
|
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 09:20:52 +00:00
|
|
|
PaintSelfOrChildren(paintLayerContext, aTarget);
|
2012-09-10 22:31:38 +00:00
|
|
|
return;
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 22:31:38 +00:00
|
|
|
if (is2D) {
|
|
|
|
if (needsGroup) {
|
|
|
|
nsRefPtr<gfxContext> groupTarget = PushGroupForLayer(aTarget, aLayer, aLayer->GetEffectiveVisibleRegion(),
|
|
|
|
&needsClipToVisibleRegion);
|
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 09:20:52 +00:00
|
|
|
PaintSelfOrChildren(paintLayerContext, groupTarget);
|
2012-09-10 22:31:38 +00:00
|
|
|
PopGroupToSourceWithCachedSurface(aTarget, groupTarget);
|
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 09:20:52 +00:00
|
|
|
FlushGroup(paintLayerContext, needsClipToVisibleRegion);
|
2012-06-29 06:01:34 +00:00
|
|
|
} else {
|
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 09:20:52 +00:00
|
|
|
PaintSelfOrChildren(paintLayerContext, aTarget);
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-09-10 22:31:38 +00:00
|
|
|
const nsIntRect& bounds = visibleRegion.GetBounds();
|
2013-11-27 00:29:45 +00:00
|
|
|
RefPtr<DrawTarget> untransformedDT =
|
|
|
|
gfxPlatform::GetPlatform()->CreateOffscreenContentDrawTarget(IntSize(bounds.width, bounds.height),
|
2014-01-10 19:06:16 +00:00
|
|
|
SurfaceFormat::B8G8R8A8);
|
2013-11-27 00:29:45 +00:00
|
|
|
if (!untransformedDT) {
|
2012-09-10 22:31:38 +00:00
|
|
|
return;
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
2013-11-27 00:29:45 +00:00
|
|
|
|
|
|
|
nsRefPtr<gfxContext> groupTarget = new gfxContext(untransformedDT);
|
|
|
|
groupTarget->Translate(gfxPoint(-bounds.x, -bounds.y));
|
2012-06-29 06:01:34 +00: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 09:20:52 +00:00
|
|
|
PaintSelfOrChildren(paintLayerContext, groupTarget);
|
2012-06-29 06:01:34 +00:00
|
|
|
|
2012-09-10 22:31:38 +00:00
|
|
|
// Temporary fast fix for bug 725886
|
|
|
|
// Revert these changes when 725886 is ready
|
2013-11-27 00:29:45 +00:00
|
|
|
NS_ABORT_IF_FALSE(untransformedDT,
|
2012-09-10 22:31:38 +00:00
|
|
|
"We should always allocate an untransformed surface with 3d transforms!");
|
2012-09-07 12:32:21 +00:00
|
|
|
gfxRect destRect;
|
2012-06-29 06:01:34 +00:00
|
|
|
#ifdef DEBUG
|
2012-09-10 22:31:38 +00:00
|
|
|
if (aLayer->GetDebugColorIndex() != 0) {
|
|
|
|
gfxRGBA color((aLayer->GetDebugColorIndex() & 1) ? 1.0 : 0.0,
|
|
|
|
(aLayer->GetDebugColorIndex() & 2) ? 1.0 : 0.0,
|
|
|
|
(aLayer->GetDebugColorIndex() & 4) ? 1.0 : 0.0,
|
|
|
|
1.0);
|
|
|
|
|
2013-11-27 00:29:45 +00:00
|
|
|
nsRefPtr<gfxContext> temp = new gfxContext(untransformedDT);
|
|
|
|
temp->Translate(gfxPoint(-bounds.x, -bounds.y));
|
2012-09-10 22:31:38 +00:00
|
|
|
temp->SetColor(color);
|
|
|
|
temp->Paint();
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
2012-09-10 22:31:38 +00:00
|
|
|
#endif
|
2014-01-25 01:49:19 +00:00
|
|
|
gfx3DMatrix effectiveTransform;
|
|
|
|
gfx::To3DMatrix(aLayer->GetEffectiveTransform(), effectiveTransform);
|
2012-09-10 22:31:38 +00:00
|
|
|
nsRefPtr<gfxASurface> result =
|
2013-11-27 00:29:45 +00:00
|
|
|
Transform3D(untransformedDT->Snapshot(), aTarget, bounds,
|
|
|
|
effectiveTransform, destRect);
|
2012-09-10 22:31:38 +00:00
|
|
|
|
|
|
|
if (result) {
|
2012-09-07 12:32:21 +00:00
|
|
|
aTarget->SetSource(result, destRect.TopLeft());
|
|
|
|
// Azure doesn't support EXTEND_NONE, so to avoid extending the edges
|
|
|
|
// of the source surface out to the current clip region, clip to
|
|
|
|
// the rectangle of the result surface now.
|
|
|
|
aTarget->NewPath();
|
2013-07-09 14:11:00 +00:00
|
|
|
aTarget->SnappedRectangle(destRect);
|
2012-09-07 12:32:21 +00:00
|
|
|
aTarget->Clip();
|
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 09:20:52 +00:00
|
|
|
FlushGroup(paintLayerContext, needsClipToVisibleRegion);
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-08 03:51:55 +00:00
|
|
|
BasicLayerManager::ClearCachedResources(Layer* aSubtree)
|
2012-06-29 06:01:34 +00:00
|
|
|
{
|
2012-11-08 03:51:55 +00:00
|
|
|
MOZ_ASSERT(!aSubtree || aSubtree->Manager() == this);
|
|
|
|
if (aSubtree) {
|
|
|
|
ClearLayer(aSubtree);
|
|
|
|
} else if (mRoot) {
|
2012-06-29 06:01:34 +00:00
|
|
|
ClearLayer(mRoot);
|
|
|
|
}
|
|
|
|
mCachedSurface.Expire();
|
|
|
|
}
|
|
|
|
void
|
|
|
|
BasicLayerManager::ClearLayer(Layer* aLayer)
|
|
|
|
{
|
|
|
|
ToData(aLayer)->ClearCachedResources();
|
|
|
|
for (Layer* child = aLayer->GetFirstChild(); child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
ClearLayer(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<ReadbackLayer>
|
|
|
|
BasicLayerManager::CreateReadbackLayer()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(InConstruction(), "Only allowed in construction phase");
|
|
|
|
nsRefPtr<ReadbackLayer> layer = new BasicReadbackLayer(this);
|
|
|
|
return layer.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|