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/. */
|
|
|
|
|
|
|
|
#include "BasicContainerLayer.h"
|
2013-08-11 23:17:23 +00:00
|
|
|
#include <sys/types.h> // for int32_t
|
|
|
|
#include "BasicLayersImpl.h" // for ToData
|
|
|
|
#include "basic/BasicImplData.h" // for BasicImplData
|
|
|
|
#include "basic/BasicLayers.h" // for BasicLayerManager
|
|
|
|
#include "mozilla/gfx/BaseRect.h" // for BaseRect
|
|
|
|
#include "mozilla/mozalloc.h" // for operator new
|
|
|
|
#include "nsAutoPtr.h" // for nsRefPtr
|
|
|
|
#include "nsCOMPtr.h" // for already_AddRefed
|
|
|
|
#include "nsISupportsImpl.h" // for Layer::AddRef, etc
|
|
|
|
#include "nsPoint.h" // for nsIntPoint
|
|
|
|
#include "nsRect.h" // for nsIntRect
|
2013-09-01 22:19:18 +00:00
|
|
|
#include "nsRegion.h" // for nsIntRegion
|
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
|
|
|
BasicContainerLayer::~BasicContainerLayer()
|
|
|
|
{
|
|
|
|
while (mFirstChild) {
|
2013-09-01 22:19:18 +00:00
|
|
|
ContainerLayer::RemoveChild(mFirstChild);
|
2012-06-29 06:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_COUNT_DTOR(BasicContainerLayer);
|
|
|
|
}
|
|
|
|
|
2013-09-01 22:19:18 +00:00
|
|
|
void
|
2014-01-27 15:28:04 +00:00
|
|
|
BasicContainerLayer::ComputeEffectiveTransforms(const Matrix4x4& aTransformToSurface)
|
2013-09-01 22:19:18 +00:00
|
|
|
{
|
|
|
|
// We push groups for container layers if we need to, which always
|
|
|
|
// are aligned in device space, so it doesn't really matter how we snap
|
|
|
|
// containers.
|
2014-01-27 15:27:20 +00:00
|
|
|
Matrix residual;
|
2014-01-27 15:28:18 +00:00
|
|
|
Matrix4x4 idealTransform = GetLocalTransform() * aTransformToSurface;
|
2013-09-01 22:19:18 +00:00
|
|
|
idealTransform.ProjectTo2D();
|
|
|
|
|
|
|
|
if (!idealTransform.CanDraw2D()) {
|
2014-01-27 15:28:18 +00:00
|
|
|
mEffectiveTransform = idealTransform;
|
2014-01-27 15:28:04 +00:00
|
|
|
ComputeEffectiveTransformsForChildren(Matrix4x4());
|
|
|
|
ComputeEffectiveTransformForMaskLayer(Matrix4x4());
|
2013-09-01 22:19:18 +00:00
|
|
|
mUseIntermediateSurface = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-27 15:28:18 +00:00
|
|
|
mEffectiveTransform = SnapTransformTranslation(idealTransform, &residual);
|
2013-09-01 22:19:18 +00:00
|
|
|
// We always pass the ideal matrix down to our children, so there is no
|
|
|
|
// need to apply any compensation using the residual from SnapTransformTranslation.
|
2014-01-27 15:28:18 +00:00
|
|
|
ComputeEffectiveTransformsForChildren(idealTransform);
|
2013-09-01 22:19:18 +00:00
|
|
|
|
|
|
|
ComputeEffectiveTransformForMaskLayer(aTransformToSurface);
|
2014-01-27 15:28:18 +00:00
|
|
|
|
2013-09-15 03:23:46 +00:00
|
|
|
Layer* child = GetFirstChild();
|
|
|
|
bool hasSingleBlendingChild = false;
|
|
|
|
if (!HasMultipleChildren() && child) {
|
2014-02-12 15:07:46 +00:00
|
|
|
hasSingleBlendingChild = child->GetMixBlendMode() != CompositionOp::OP_OVER;
|
2013-09-15 03:23:46 +00:00
|
|
|
}
|
2013-09-01 22:19:18 +00:00
|
|
|
|
2013-09-15 03:23:46 +00:00
|
|
|
/* If we have a single childand it is not blending,, it can just inherit our opacity,
|
2013-09-01 22:19:18 +00:00
|
|
|
* otherwise we need a PushGroup and we need to mark ourselves as using
|
|
|
|
* an intermediate surface so our children don't inherit our opacity
|
|
|
|
* via GetEffectiveOpacity.
|
|
|
|
* Having a mask layer always forces our own push group
|
2013-09-15 03:23:46 +00:00
|
|
|
* Having a blend mode also always forces our own push group
|
2013-09-01 22:19:18 +00:00
|
|
|
*/
|
|
|
|
mUseIntermediateSurface =
|
2013-09-15 03:23:46 +00:00
|
|
|
GetMaskLayer() ||
|
2013-09-15 03:30:00 +00:00
|
|
|
GetForceIsolatedGroup() ||
|
2014-02-12 15:07:46 +00:00
|
|
|
(GetMixBlendMode() != CompositionOp::OP_OVER && HasMultipleChildren()) ||
|
2013-09-15 03:23:46 +00:00
|
|
|
(GetEffectiveOpacity() != 1.0 && (HasMultipleChildren() || hasSingleBlendingChild));
|
2013-09-01 22:19:18 +00:00
|
|
|
}
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
bool
|
|
|
|
BasicContainerLayer::ChildrenPartitionVisibleRegion(const nsIntRect& aInRect)
|
|
|
|
{
|
2014-01-27 20:25:19 +00:00
|
|
|
Matrix transform;
|
|
|
|
if (!GetEffectiveTransform().CanDraw2D(&transform) ||
|
|
|
|
ThebesMatrix(transform).HasNonIntegerTranslation())
|
2012-06-29 06:01:34 +00:00
|
|
|
return false;
|
|
|
|
|
2014-01-27 20:25:19 +00:00
|
|
|
nsIntPoint offset(int32_t(transform._31), int32_t(transform._32));
|
2012-06-29 06:01:34 +00:00
|
|
|
nsIntRect rect = aInRect.Intersect(GetEffectiveVisibleRegion().GetBounds() + offset);
|
|
|
|
nsIntRegion covered;
|
|
|
|
|
|
|
|
for (Layer* l = mFirstChild; l; l = l->GetNextSibling()) {
|
|
|
|
if (ToData(l)->IsHidden())
|
|
|
|
continue;
|
|
|
|
|
2014-01-27 20:25:19 +00:00
|
|
|
Matrix childTransform;
|
|
|
|
if (!l->GetEffectiveTransform().CanDraw2D(&childTransform) ||
|
|
|
|
ThebesMatrix(childTransform).HasNonIntegerTranslation() ||
|
2012-06-29 06:01:34 +00:00
|
|
|
l->GetEffectiveOpacity() != 1.0)
|
|
|
|
return false;
|
|
|
|
nsIntRegion childRegion = l->GetEffectiveVisibleRegion();
|
2014-01-27 20:25:19 +00:00
|
|
|
childRegion.MoveBy(int32_t(childTransform._31), int32_t(childTransform._32));
|
2012-06-29 06:01:34 +00:00
|
|
|
childRegion.And(childRegion, rect);
|
|
|
|
if (l->GetClipRect()) {
|
|
|
|
childRegion.And(childRegion, *l->GetClipRect() + offset);
|
|
|
|
}
|
|
|
|
nsIntRegion intersection;
|
|
|
|
intersection.And(covered, childRegion);
|
|
|
|
if (!intersection.IsEmpty())
|
|
|
|
return false;
|
|
|
|
covered.Or(covered, childRegion);
|
|
|
|
}
|
|
|
|
|
|
|
|
return covered.Contains(rect);
|
|
|
|
}
|
|
|
|
|
2013-10-15 03:23:21 +00:00
|
|
|
void
|
|
|
|
BasicContainerLayer::Validate(LayerManager::DrawThebesLayerCallback aCallback,
|
|
|
|
void* aCallbackData)
|
|
|
|
{
|
|
|
|
for (Layer* l = mFirstChild; l; l = l->GetNextSibling()) {
|
|
|
|
BasicImplData* data = ToData(l);
|
|
|
|
data->Validate(aCallback, aCallbackData);
|
|
|
|
if (l->GetMaskLayer()) {
|
|
|
|
data = ToData(l->GetMaskLayer());
|
|
|
|
data->Validate(aCallback, aCallbackData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-29 06:01:34 +00:00
|
|
|
already_AddRefed<ContainerLayer>
|
|
|
|
BasicLayerManager::CreateContainerLayer()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(InConstruction(), "Only allowed in construction phase");
|
|
|
|
nsRefPtr<ContainerLayer> layer = new BasicContainerLayer(this);
|
|
|
|
return layer.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|