2013-04-28 06:46:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=2 et tw=80 : */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "mozilla/layers/AsyncCompositionManager.h"
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
# include <android/log.h>
|
|
|
|
# include "AndroidBridge.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "CompositorParent.h"
|
|
|
|
#include "LayerManagerComposite.h"
|
|
|
|
|
|
|
|
#include "nsStyleAnimation.h"
|
|
|
|
#include "nsDisplayList.h"
|
|
|
|
#include "AnimationCommon.h"
|
|
|
|
#include "nsAnimationManager.h"
|
|
|
|
#include "mozilla/layers/AsyncPanZoomController.h"
|
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
enum Op { Resolve, Detach };
|
|
|
|
|
|
|
|
static bool
|
|
|
|
IsSameDimension(ScreenOrientation o1, ScreenOrientation o2)
|
|
|
|
{
|
|
|
|
bool isO1portrait = (o1 == eScreenOrientation_PortraitPrimary || o1 == eScreenOrientation_PortraitSecondary);
|
|
|
|
bool isO2portrait = (o2 == eScreenOrientation_PortraitPrimary || o2 == eScreenOrientation_PortraitSecondary);
|
|
|
|
return !(isO1portrait ^ isO2portrait);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
ContentMightReflowOnOrientationChange(const nsIntRect& rect)
|
|
|
|
{
|
|
|
|
return rect.width != rect.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<Op OP>
|
|
|
|
static void
|
|
|
|
WalkTheTree(Layer* aLayer,
|
|
|
|
Layer* aParent,
|
|
|
|
bool& aReady,
|
|
|
|
const TargetConfig& aTargetConfig)
|
|
|
|
{
|
|
|
|
if (RefLayer* ref = aLayer->AsRefLayer()) {
|
|
|
|
if (const CompositorParent::LayerTreeState* state = CompositorParent::GetIndirectShadowTree(ref->GetReferentId())) {
|
|
|
|
if (Layer* referent = state->mRoot) {
|
|
|
|
if (!ref->GetVisibleRegion().IsEmpty()) {
|
|
|
|
ScreenOrientation chromeOrientation = aTargetConfig.orientation();
|
|
|
|
ScreenOrientation contentOrientation = state->mTargetConfig.orientation();
|
|
|
|
if (!IsSameDimension(chromeOrientation, contentOrientation) &&
|
|
|
|
ContentMightReflowOnOrientationChange(aTargetConfig.clientBounds())) {
|
|
|
|
aReady = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (OP == Resolve) {
|
|
|
|
ref->ConnectReferentLayer(referent);
|
|
|
|
if (AsyncPanZoomController* apzc = state->mController) {
|
|
|
|
referent->SetAsyncPanZoomController(apzc);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ref->DetachReferentLayer(referent);
|
|
|
|
referent->SetAsyncPanZoomController(nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (Layer* child = aLayer->GetFirstChild();
|
|
|
|
child; child = child->GetNextSibling()) {
|
|
|
|
WalkTheTree<OP>(child, aLayer, aReady, aTargetConfig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncCompositionManager::ResolveRefLayers()
|
|
|
|
{
|
|
|
|
WalkTheTree<Resolve>(mLayerManager->GetRoot(),
|
|
|
|
nullptr,
|
|
|
|
mReadyForCompose,
|
|
|
|
mTargetConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncCompositionManager::DetachRefLayers()
|
|
|
|
{
|
|
|
|
WalkTheTree<Detach>(mLayerManager->GetRoot(),
|
|
|
|
nullptr,
|
|
|
|
mReadyForCompose,
|
|
|
|
mTargetConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncCompositionManager::ComputeRotation()
|
|
|
|
{
|
|
|
|
if (!mTargetConfig.naturalBounds().IsEmpty()) {
|
|
|
|
mLayerManager->SetWorldTransform(
|
|
|
|
ComputeTransformForRotation(mTargetConfig.naturalBounds(),
|
|
|
|
mTargetConfig.rotation()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do a breadth-first search to find the first layer in the tree that is
|
|
|
|
// scrollable.
|
|
|
|
static void
|
|
|
|
Translate2D(gfx3DMatrix& aTransform, const gfxPoint& aOffset)
|
|
|
|
{
|
|
|
|
aTransform._41 += aOffset.x;
|
|
|
|
aTransform._42 += aOffset.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncCompositionManager::TransformFixedLayers(Layer* aLayer,
|
|
|
|
const gfxPoint& aTranslation,
|
|
|
|
const gfxSize& aScaleDiff,
|
|
|
|
const gfx::Margin& aFixedLayerMargins)
|
|
|
|
{
|
|
|
|
if (aLayer->GetIsFixedPosition() &&
|
|
|
|
!aLayer->GetParent()->GetIsFixedPosition()) {
|
|
|
|
// When a scale has been applied to a layer, it focuses around (0,0).
|
|
|
|
// The anchor position is used here as a scale focus point (assuming that
|
|
|
|
// aScaleDiff has already been applied) to re-focus the scale.
|
|
|
|
const gfxPoint& anchor = aLayer->GetFixedPositionAnchor();
|
|
|
|
gfxPoint translation(aTranslation - (anchor - anchor / aScaleDiff));
|
|
|
|
|
|
|
|
// Offset this translation by the fixed layer margins, depending on what
|
|
|
|
// side of the viewport the layer is anchored to, reconciling the
|
|
|
|
// difference between the current fixed layer margins and the Gecko-side
|
|
|
|
// fixed layer margins.
|
|
|
|
// aFixedLayerMargins are the margins we expect to be at at the current
|
|
|
|
// time, obtained via SyncViewportInfo, and fixedMargins are the margins
|
|
|
|
// that were used during layout.
|
|
|
|
// If top/left of fixedMargins are negative, that indicates that this layer
|
|
|
|
// represents auto-positioned elements, and should not be affected by
|
|
|
|
// fixed margins at all.
|
|
|
|
const gfx::Margin& fixedMargins = aLayer->GetFixedPositionMargins();
|
|
|
|
if (fixedMargins.left >= 0) {
|
|
|
|
if (anchor.x > 0) {
|
|
|
|
translation.x -= aFixedLayerMargins.right - fixedMargins.right;
|
|
|
|
} else {
|
|
|
|
translation.x += aFixedLayerMargins.left - fixedMargins.left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fixedMargins.top >= 0) {
|
|
|
|
if (anchor.y > 0) {
|
|
|
|
translation.y -= aFixedLayerMargins.bottom - fixedMargins.bottom;
|
|
|
|
} else {
|
|
|
|
translation.y += aFixedLayerMargins.top - fixedMargins.top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The transform already takes the resolution scale into account. Since we
|
|
|
|
// will apply the resolution scale again when computing the effective
|
|
|
|
// transform, we must apply the inverse resolution scale here.
|
2013-05-16 12:34:24 +00:00
|
|
|
LayerComposite* layerComposite = aLayer->AsLayerComposite();
|
|
|
|
gfx3DMatrix layerTransform;
|
|
|
|
if (layerComposite->GetShadowTransformSetByAnimation()) {
|
|
|
|
// Start with the animated transform
|
|
|
|
layerTransform = aLayer->GetLocalTransform();
|
|
|
|
} else {
|
|
|
|
layerTransform = aLayer->GetTransform();
|
|
|
|
}
|
2013-04-28 06:46:30 +00:00
|
|
|
Translate2D(layerTransform, translation);
|
|
|
|
if (ContainerLayer* c = aLayer->AsContainerLayer()) {
|
|
|
|
layerTransform.Scale(1.0f/c->GetPreXScale(),
|
|
|
|
1.0f/c->GetPreYScale(),
|
|
|
|
1);
|
|
|
|
}
|
|
|
|
layerTransform.ScalePost(1.0f/aLayer->GetPostXScale(),
|
|
|
|
1.0f/aLayer->GetPostYScale(),
|
|
|
|
1);
|
|
|
|
layerComposite->SetShadowTransform(layerTransform);
|
2013-05-16 12:34:24 +00:00
|
|
|
layerComposite->SetShadowTransformSetByAnimation(false);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
const nsIntRect* clipRect = aLayer->GetClipRect();
|
|
|
|
if (clipRect) {
|
|
|
|
nsIntRect transformedClipRect(*clipRect);
|
|
|
|
transformedClipRect.MoveBy(translation.x, translation.y);
|
|
|
|
layerComposite->SetShadowClipRect(&transformedClipRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The transform has now been applied, so there's no need to iterate over
|
|
|
|
// child layers.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Layer* child = aLayer->GetFirstChild();
|
|
|
|
child; child = child->GetNextSibling()) {
|
|
|
|
TransformFixedLayers(child, aTranslation, aScaleDiff, aFixedLayerMargins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SampleValue(float aPortion, Animation& aAnimation, nsStyleAnimation::Value& aStart,
|
|
|
|
nsStyleAnimation::Value& aEnd, Animatable* aValue)
|
|
|
|
{
|
|
|
|
nsStyleAnimation::Value interpolatedValue;
|
|
|
|
NS_ASSERTION(aStart.GetUnit() == aEnd.GetUnit() ||
|
|
|
|
aStart.GetUnit() == nsStyleAnimation::eUnit_None ||
|
|
|
|
aEnd.GetUnit() == nsStyleAnimation::eUnit_None, "Must have same unit");
|
|
|
|
nsStyleAnimation::Interpolate(aAnimation.property(), aStart, aEnd,
|
|
|
|
aPortion, interpolatedValue);
|
|
|
|
if (aAnimation.property() == eCSSProperty_opacity) {
|
|
|
|
*aValue = interpolatedValue.GetFloatValue();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCSSValueList* interpolatedList = interpolatedValue.GetCSSValueListValue();
|
|
|
|
|
|
|
|
TransformData& data = aAnimation.data().get_TransformData();
|
|
|
|
nsPoint origin = data.origin();
|
|
|
|
// we expect all our transform data to arrive in css pixels, so here we must
|
|
|
|
// adjust to dev pixels.
|
|
|
|
double cssPerDev = double(nsDeviceContext::AppUnitsPerCSSPixel())
|
|
|
|
/ double(data.appUnitsPerDevPixel());
|
|
|
|
gfxPoint3D mozOrigin = data.mozOrigin();
|
|
|
|
mozOrigin.x = mozOrigin.x * cssPerDev;
|
|
|
|
mozOrigin.y = mozOrigin.y * cssPerDev;
|
|
|
|
gfxPoint3D perspectiveOrigin = data.perspectiveOrigin();
|
|
|
|
perspectiveOrigin.x = perspectiveOrigin.x * cssPerDev;
|
|
|
|
perspectiveOrigin.y = perspectiveOrigin.y * cssPerDev;
|
|
|
|
nsDisplayTransform::FrameTransformProperties props(interpolatedList,
|
|
|
|
mozOrigin,
|
|
|
|
perspectiveOrigin,
|
|
|
|
data.perspective());
|
|
|
|
gfx3DMatrix transform =
|
|
|
|
nsDisplayTransform::GetResultingTransformMatrix(props, origin,
|
|
|
|
data.appUnitsPerDevPixel(),
|
|
|
|
&data.bounds());
|
|
|
|
gfxPoint3D scaledOrigin =
|
|
|
|
gfxPoint3D(NS_round(NSAppUnitsToFloatPixels(origin.x, data.appUnitsPerDevPixel())),
|
|
|
|
NS_round(NSAppUnitsToFloatPixels(origin.y, data.appUnitsPerDevPixel())),
|
|
|
|
0.0f);
|
|
|
|
|
|
|
|
transform.Translate(scaledOrigin);
|
|
|
|
|
|
|
|
InfallibleTArray<TransformFunction> functions;
|
|
|
|
functions.AppendElement(TransformMatrix(transform));
|
|
|
|
*aValue = functions;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
SampleAnimations(Layer* aLayer, TimeStamp aPoint)
|
|
|
|
{
|
|
|
|
AnimationArray& animations = aLayer->GetAnimations();
|
|
|
|
InfallibleTArray<AnimData>& animationData = aLayer->GetAnimationData();
|
|
|
|
|
|
|
|
bool activeAnimations = false;
|
|
|
|
|
|
|
|
for (uint32_t i = animations.Length(); i-- !=0; ) {
|
|
|
|
Animation& animation = animations[i];
|
|
|
|
AnimData& animData = animationData[i];
|
|
|
|
|
|
|
|
double numIterations = animation.numIterations() != -1 ?
|
|
|
|
animation.numIterations() : NS_IEEEPositiveInfinity();
|
|
|
|
double positionInIteration =
|
|
|
|
ElementAnimations::GetPositionInIteration(aPoint - animation.startTime(),
|
|
|
|
animation.duration(),
|
|
|
|
numIterations,
|
|
|
|
animation.direction());
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(0.0 <= positionInIteration &&
|
|
|
|
positionInIteration <= 1.0,
|
|
|
|
"position should be in [0-1]");
|
|
|
|
|
|
|
|
int segmentIndex = 0;
|
|
|
|
AnimationSegment* segment = animation.segments().Elements();
|
|
|
|
while (segment->endPortion() < positionInIteration) {
|
|
|
|
++segment;
|
|
|
|
++segmentIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
double positionInSegment = (positionInIteration - segment->startPortion()) /
|
|
|
|
(segment->endPortion() - segment->startPortion());
|
|
|
|
|
|
|
|
double portion = animData.mFunctions[segmentIndex]->GetValue(positionInSegment);
|
|
|
|
|
|
|
|
activeAnimations = true;
|
|
|
|
|
|
|
|
// interpolate the property
|
|
|
|
Animatable interpolatedValue;
|
|
|
|
SampleValue(portion, animation, animData.mStartValues[segmentIndex],
|
|
|
|
animData.mEndValues[segmentIndex], &interpolatedValue);
|
|
|
|
LayerComposite* layerComposite = aLayer->AsLayerComposite();
|
|
|
|
switch (animation.property()) {
|
|
|
|
case eCSSProperty_opacity:
|
|
|
|
{
|
|
|
|
layerComposite->SetShadowOpacity(interpolatedValue.get_float());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case eCSSProperty_transform:
|
|
|
|
{
|
|
|
|
gfx3DMatrix matrix = interpolatedValue.get_ArrayOfTransformFunction()[0].get_TransformMatrix().value();
|
|
|
|
if (ContainerLayer* c = aLayer->AsContainerLayer()) {
|
|
|
|
matrix.ScalePost(c->GetInheritedXScale(),
|
|
|
|
c->GetInheritedYScale(),
|
|
|
|
1);
|
|
|
|
}
|
|
|
|
layerComposite->SetShadowTransform(matrix);
|
2013-05-16 12:34:24 +00:00
|
|
|
layerComposite->SetShadowTransformSetByAnimation(true);
|
2013-04-28 06:46:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
NS_WARNING("Unhandled animated property");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Layer* child = aLayer->GetFirstChild(); child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
activeAnimations |= SampleAnimations(child, aPoint);
|
|
|
|
}
|
|
|
|
|
|
|
|
return activeAnimations;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AsyncCompositionManager::ApplyAsyncContentTransformToTree(TimeStamp aCurrentFrame,
|
|
|
|
Layer *aLayer,
|
|
|
|
bool* aWantNextFrame)
|
|
|
|
{
|
|
|
|
bool appliedTransform = false;
|
|
|
|
for (Layer* child = aLayer->GetFirstChild();
|
|
|
|
child; child = child->GetNextSibling()) {
|
|
|
|
appliedTransform |=
|
|
|
|
ApplyAsyncContentTransformToTree(aCurrentFrame, child, aWantNextFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
ContainerLayer* container = aLayer->AsContainerLayer();
|
|
|
|
if (!container) {
|
|
|
|
return appliedTransform;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (AsyncPanZoomController* controller = aLayer->GetAsyncPanZoomController()) {
|
|
|
|
LayerComposite* layerComposite = aLayer->AsLayerComposite();
|
|
|
|
|
|
|
|
ViewTransform treeTransform;
|
2013-06-14 20:11:29 +00:00
|
|
|
ScreenPoint scrollOffset;
|
2013-04-28 06:46:30 +00:00
|
|
|
*aWantNextFrame |=
|
|
|
|
controller->SampleContentTransformForFrame(aCurrentFrame,
|
|
|
|
container,
|
|
|
|
&treeTransform,
|
2013-05-01 14:49:27 +00:00
|
|
|
scrollOffset);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
2013-05-01 14:49:27 +00:00
|
|
|
const gfx3DMatrix& rootTransform = mLayerManager->GetRoot()->GetTransform();
|
|
|
|
const FrameMetrics& metrics = container->GetFrameMetrics();
|
2013-06-21 21:03:56 +00:00
|
|
|
CSSToLayerScale paintScale = metrics.mDevPixelsPerCSSPixel
|
|
|
|
/ LayerToLayoutDeviceScale(rootTransform.GetXScale(), rootTransform.GetYScale());
|
2013-06-10 13:05:42 +00:00
|
|
|
CSSRect displayPort(metrics.mCriticalDisplayPort.IsEmpty() ?
|
|
|
|
metrics.mDisplayPort : metrics.mCriticalDisplayPort);
|
2013-04-28 06:46:30 +00:00
|
|
|
gfx::Margin fixedLayerMargins(0, 0, 0, 0);
|
2013-06-03 14:00:02 +00:00
|
|
|
ScreenPoint offset(0, 0);
|
2013-06-14 20:11:31 +00:00
|
|
|
SyncFrameMetrics(scrollOffset, treeTransform.mScale.scale, metrics.mScrollableRect,
|
2013-06-21 21:03:55 +00:00
|
|
|
mLayersUpdated, displayPort, paintScale,
|
2013-05-01 18:12:08 +00:00
|
|
|
mIsFirstPaint, fixedLayerMargins, offset);
|
2013-05-01 14:49:27 +00:00
|
|
|
|
2013-04-28 06:46:30 +00:00
|
|
|
mIsFirstPaint = false;
|
|
|
|
mLayersUpdated = false;
|
|
|
|
|
|
|
|
// Apply the render offset
|
2013-05-01 18:12:08 +00:00
|
|
|
mLayerManager->GetCompositor()->SetScreenRenderOffset(offset);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
gfx3DMatrix transform(gfx3DMatrix(treeTransform) * aLayer->GetTransform());
|
|
|
|
// The transform already takes the resolution scale into account. Since we
|
|
|
|
// will apply the resolution scale again when computing the effective
|
|
|
|
// transform, we must apply the inverse resolution scale here.
|
|
|
|
transform.Scale(1.0f/container->GetPreXScale(),
|
|
|
|
1.0f/container->GetPreYScale(),
|
|
|
|
1);
|
|
|
|
transform.ScalePost(1.0f/aLayer->GetPostXScale(),
|
|
|
|
1.0f/aLayer->GetPostYScale(),
|
|
|
|
1);
|
|
|
|
layerComposite->SetShadowTransform(transform);
|
2013-05-16 12:34:24 +00:00
|
|
|
NS_ASSERTION(!layerComposite->GetShadowTransformSetByAnimation(),
|
|
|
|
"overwriting animated transform!");
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
TransformFixedLayers(
|
|
|
|
aLayer,
|
2013-06-14 20:11:30 +00:00
|
|
|
gfxPoint(-treeTransform.mTranslation.x, -treeTransform.mTranslation.y),
|
2013-06-14 20:11:31 +00:00
|
|
|
gfxSize(treeTransform.mScale.scale, treeTransform.mScale.scale),
|
2013-04-28 06:46:30 +00:00
|
|
|
fixedLayerMargins);
|
|
|
|
|
|
|
|
appliedTransform = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return appliedTransform;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncCompositionManager::TransformScrollableLayer(Layer* aLayer, const gfx3DMatrix& aRootTransform)
|
|
|
|
{
|
|
|
|
LayerComposite* layerComposite = aLayer->AsLayerComposite();
|
|
|
|
ContainerLayer* container = aLayer->AsContainerLayer();
|
|
|
|
|
|
|
|
const FrameMetrics& metrics = container->GetFrameMetrics();
|
|
|
|
// We must apply the resolution scale before a pan/zoom transform, so we call
|
|
|
|
// GetTransform here.
|
|
|
|
const gfx3DMatrix& currentTransform = aLayer->GetTransform();
|
|
|
|
|
|
|
|
gfx3DMatrix treeTransform;
|
|
|
|
|
2013-06-21 21:03:56 +00:00
|
|
|
CSSToLayerScale geckoZoom = metrics.mDevPixelsPerCSSPixel /
|
|
|
|
LayerToLayoutDeviceScale(aRootTransform.GetXScale(), aRootTransform.GetYScale());
|
2013-06-03 13:58:07 +00:00
|
|
|
|
2013-06-14 20:11:31 +00:00
|
|
|
LayerIntPoint scrollOffsetLayerPixels = RoundedToInt(metrics.mScrollOffset * geckoZoom);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
if (mIsFirstPaint) {
|
2013-06-11 13:46:51 +00:00
|
|
|
mContentRect = metrics.mScrollableRect;
|
2013-06-03 13:58:07 +00:00
|
|
|
SetFirstPaintViewport(scrollOffsetLayerPixels,
|
2013-06-21 21:03:56 +00:00
|
|
|
geckoZoom,
|
2013-06-11 13:46:51 +00:00
|
|
|
mContentRect);
|
2013-04-28 06:46:30 +00:00
|
|
|
mIsFirstPaint = false;
|
2013-06-11 13:46:51 +00:00
|
|
|
} else if (!metrics.mScrollableRect.IsEqualEdges(mContentRect)) {
|
|
|
|
mContentRect = metrics.mScrollableRect;
|
|
|
|
SetPageRect(mContentRect);
|
2013-04-28 06:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We synchronise the viewport information with Java after sending the above
|
|
|
|
// notifications, so that Java can take these into account in its response.
|
|
|
|
// Calculate the absolute display port to send to Java
|
2013-06-14 20:11:31 +00:00
|
|
|
LayerIntRect displayPort = RoundedToInt(
|
|
|
|
(metrics.mCriticalDisplayPort.IsEmpty()
|
|
|
|
? metrics.mDisplayPort
|
|
|
|
: metrics.mCriticalDisplayPort
|
|
|
|
) * geckoZoom);
|
2013-06-10 13:05:42 +00:00
|
|
|
displayPort += scrollOffsetLayerPixels;
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
gfx::Margin fixedLayerMargins(0, 0, 0, 0);
|
2013-06-03 14:00:02 +00:00
|
|
|
ScreenPoint offset(0, 0);
|
2013-06-21 21:03:57 +00:00
|
|
|
|
|
|
|
// Ideally we would initialize userZoom to AsyncPanZoomController::CalculateResolution(metrics)
|
|
|
|
// but this causes a reftest-ipc test to fail (see bug 883646 comment 27). The reason for this
|
|
|
|
// appears to be that metrics.mZoom is poorly initialized in some scenarios. In these scenarios,
|
|
|
|
// however, we can assume there is no async zooming in progress and so the following statement
|
|
|
|
// works fine.
|
|
|
|
CSSToScreenScale userZoom(metrics.mDevPixelsPerCSSPixel.scale * metrics.mResolution.scale);
|
|
|
|
ScreenPoint userScroll = metrics.mScrollOffset * userZoom;
|
2013-06-21 21:03:56 +00:00
|
|
|
SyncViewportInfo(displayPort, geckoZoom, mLayersUpdated,
|
|
|
|
userScroll, userZoom, fixedLayerMargins,
|
2013-05-01 18:12:08 +00:00
|
|
|
offset);
|
2013-04-28 06:46:30 +00:00
|
|
|
mLayersUpdated = false;
|
|
|
|
|
|
|
|
// Apply the render offset
|
2013-05-01 18:12:08 +00:00
|
|
|
mLayerManager->GetCompositor()->SetScreenRenderOffset(offset);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
// Handle transformations for asynchronous panning and zooming. We determine the
|
|
|
|
// zoom used by Gecko from the transformation set on the root layer, and we
|
|
|
|
// determine the scroll offset used by Gecko from the frame metrics of the
|
2013-06-14 20:11:31 +00:00
|
|
|
// primary scrollable layer. We compare this to the user zoom and scroll
|
2013-04-28 06:46:30 +00:00
|
|
|
// offset in the view transform we obtained from Java in order to compute the
|
|
|
|
// transformation we need to apply.
|
2013-06-14 20:11:31 +00:00
|
|
|
LayerToScreenScale zoomAdjust = userZoom / geckoZoom;
|
2013-04-28 06:46:30 +00:00
|
|
|
|
2013-06-14 20:11:31 +00:00
|
|
|
LayerIntPoint geckoScroll(0, 0);
|
2013-04-28 06:46:30 +00:00
|
|
|
if (metrics.IsScrollable()) {
|
2013-06-14 20:11:31 +00:00
|
|
|
geckoScroll = scrollOffsetLayerPixels;
|
2013-04-28 06:46:30 +00:00
|
|
|
}
|
|
|
|
|
2013-06-14 20:11:31 +00:00
|
|
|
LayerPoint translation = (userScroll / zoomAdjust) - geckoScroll;
|
2013-06-21 21:03:57 +00:00
|
|
|
treeTransform = gfx3DMatrix(ViewTransform(-translation, userZoom / metrics.mDevPixelsPerCSSPixel));
|
2013-04-28 06:46:30 +00:00
|
|
|
|
2013-05-01 18:12:08 +00:00
|
|
|
// Translate fixed position layers so that they stay in the correct position
|
2013-06-14 20:11:31 +00:00
|
|
|
// when userScroll and geckoScroll differ.
|
2013-05-01 18:12:08 +00:00
|
|
|
gfxPoint fixedOffset;
|
|
|
|
gfxSize scaleDiff;
|
|
|
|
|
2013-06-14 20:11:31 +00:00
|
|
|
LayerRect content = mContentRect * geckoZoom;
|
2013-04-28 06:46:30 +00:00
|
|
|
// If the contents can fit entirely within the widget area on a particular
|
2013-06-11 13:46:51 +00:00
|
|
|
// dimension, we need to translate and scale so that the fixed layers remain
|
2013-04-28 06:46:30 +00:00
|
|
|
// within the page boundaries.
|
2013-06-14 20:11:31 +00:00
|
|
|
if (mContentRect.width * userZoom.scale < metrics.mCompositionBounds.width) {
|
|
|
|
fixedOffset.x = -geckoScroll.x;
|
2013-06-11 13:46:51 +00:00
|
|
|
scaleDiff.width = std::min(1.0f, metrics.mCompositionBounds.width / content.width);
|
2013-04-28 06:46:30 +00:00
|
|
|
} else {
|
2013-06-14 20:11:31 +00:00
|
|
|
fixedOffset.x = clamped(userScroll.x / zoomAdjust.scale, content.x,
|
|
|
|
content.XMost() - metrics.mCompositionBounds.width / zoomAdjust.scale) - geckoScroll.x;
|
|
|
|
scaleDiff.width = zoomAdjust.scale;
|
2013-04-28 06:46:30 +00:00
|
|
|
}
|
|
|
|
|
2013-06-14 20:11:31 +00:00
|
|
|
if (mContentRect.height * userZoom.scale < metrics.mCompositionBounds.height) {
|
|
|
|
fixedOffset.y = -geckoScroll.y;
|
2013-06-11 13:46:51 +00:00
|
|
|
scaleDiff.height = std::min(1.0f, metrics.mCompositionBounds.height / content.height);
|
2013-04-28 06:46:30 +00:00
|
|
|
} else {
|
2013-06-14 20:11:31 +00:00
|
|
|
fixedOffset.y = clamped(userScroll.y / zoomAdjust.scale, content.y,
|
|
|
|
content.YMost() - metrics.mCompositionBounds.height / zoomAdjust.scale) - geckoScroll.y;
|
|
|
|
scaleDiff.height = zoomAdjust.scale;
|
2013-04-28 06:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The transform already takes the resolution scale into account. Since we
|
|
|
|
// will apply the resolution scale again when computing the effective
|
|
|
|
// transform, we must apply the inverse resolution scale here.
|
|
|
|
gfx3DMatrix computedTransform = treeTransform * currentTransform;
|
|
|
|
computedTransform.Scale(1.0f/container->GetPreXScale(),
|
|
|
|
1.0f/container->GetPreYScale(),
|
|
|
|
1);
|
|
|
|
computedTransform.ScalePost(1.0f/container->GetPostXScale(),
|
|
|
|
1.0f/container->GetPostYScale(),
|
|
|
|
1);
|
|
|
|
layerComposite->SetShadowTransform(computedTransform);
|
2013-05-16 12:34:24 +00:00
|
|
|
NS_ASSERTION(!layerComposite->GetShadowTransformSetByAnimation(),
|
|
|
|
"overwriting animated transform!");
|
2013-05-01 18:12:08 +00:00
|
|
|
TransformFixedLayers(aLayer, fixedOffset, scaleDiff, fixedLayerMargins);
|
2013-04-28 06:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AsyncCompositionManager::TransformShadowTree(TimeStamp aCurrentFrame)
|
|
|
|
{
|
|
|
|
Layer* root = mLayerManager->GetRoot();
|
|
|
|
|
|
|
|
// NB: we must sample animations *before* sampling pan/zoom
|
|
|
|
// transforms.
|
2013-05-27 23:47:45 +00:00
|
|
|
bool wantNextFrame = SampleAnimations(root, aCurrentFrame);
|
2013-04-28 06:46:30 +00:00
|
|
|
|
|
|
|
const gfx3DMatrix& rootTransform = root->GetTransform();
|
|
|
|
|
|
|
|
// FIXME/bug 775437: unify this interface with the ~native-fennec
|
|
|
|
// derived code
|
|
|
|
//
|
|
|
|
// Attempt to apply an async content transform to any layer that has
|
|
|
|
// an async pan zoom controller (which means that it is rendered
|
|
|
|
// async using Gecko). If this fails, fall back to transforming the
|
|
|
|
// primary scrollable layer. "Failing" here means that we don't
|
|
|
|
// find a frame that is async scrollable. Note that the fallback
|
|
|
|
// code also includes Fennec which is rendered async. Fennec uses
|
|
|
|
// its own platform-specific async rendering that is done partially
|
|
|
|
// in Gecko and partially in Java.
|
|
|
|
if (!ApplyAsyncContentTransformToTree(aCurrentFrame, root, &wantNextFrame)) {
|
|
|
|
nsAutoTArray<Layer*,1> scrollableLayers;
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
scrollableLayers.AppendElement(mLayerManager->GetPrimaryScrollableLayer());
|
|
|
|
#else
|
|
|
|
mLayerManager->GetScrollableLayers(scrollableLayers);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < scrollableLayers.Length(); i++) {
|
|
|
|
if (scrollableLayers[i]) {
|
|
|
|
TransformScrollableLayer(scrollableLayers[i], rootTransform);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return wantNextFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-06-03 13:58:07 +00:00
|
|
|
AsyncCompositionManager::SetFirstPaintViewport(const LayerIntPoint& aOffset,
|
2013-06-21 21:03:56 +00:00
|
|
|
const CSSToLayerScale& aZoom,
|
2013-06-03 13:52:44 +00:00
|
|
|
const CSSRect& aCssPageRect)
|
2013-04-28 06:46:30 +00:00
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
2013-06-11 13:46:51 +00:00
|
|
|
AndroidBridge::Bridge()->SetFirstPaintViewport(aOffset, aZoom, aCssPageRect);
|
2013-04-28 06:46:30 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-06-03 13:52:44 +00:00
|
|
|
AsyncCompositionManager::SetPageRect(const CSSRect& aCssPageRect)
|
2013-04-28 06:46:30 +00:00
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
AndroidBridge::Bridge()->SetPageRect(aCssPageRect);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-06-03 13:58:07 +00:00
|
|
|
AsyncCompositionManager::SyncViewportInfo(const LayerIntRect& aDisplayPort,
|
2013-06-21 21:03:56 +00:00
|
|
|
const CSSToLayerScale& aDisplayResolution,
|
2013-04-28 06:46:30 +00:00
|
|
|
bool aLayersUpdated,
|
2013-06-03 13:53:32 +00:00
|
|
|
ScreenPoint& aScrollOffset,
|
2013-06-21 21:03:56 +00:00
|
|
|
CSSToScreenScale& aScale,
|
2013-04-28 06:46:30 +00:00
|
|
|
gfx::Margin& aFixedLayerMargins,
|
2013-06-03 14:00:02 +00:00
|
|
|
ScreenPoint& aOffset)
|
2013-04-28 06:46:30 +00:00
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
AndroidBridge::Bridge()->SyncViewportInfo(aDisplayPort,
|
|
|
|
aDisplayResolution,
|
|
|
|
aLayersUpdated,
|
|
|
|
aScrollOffset,
|
2013-06-21 21:03:56 +00:00
|
|
|
aScale,
|
2013-04-28 06:46:30 +00:00
|
|
|
aFixedLayerMargins,
|
2013-05-01 18:12:08 +00:00
|
|
|
aOffset);
|
2013-04-28 06:46:30 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-05-01 14:49:27 +00:00
|
|
|
void
|
2013-06-14 20:11:29 +00:00
|
|
|
AsyncCompositionManager::SyncFrameMetrics(const ScreenPoint& aScrollOffset,
|
2013-05-01 14:49:27 +00:00
|
|
|
float aZoom,
|
2013-06-03 13:52:44 +00:00
|
|
|
const CSSRect& aCssPageRect,
|
2013-05-01 14:49:27 +00:00
|
|
|
bool aLayersUpdated,
|
2013-06-10 13:05:42 +00:00
|
|
|
const CSSRect& aDisplayPort,
|
2013-06-21 21:03:56 +00:00
|
|
|
const CSSToLayerScale& aDisplayResolution,
|
2013-05-01 14:49:27 +00:00
|
|
|
bool aIsFirstPaint,
|
|
|
|
gfx::Margin& aFixedLayerMargins,
|
2013-06-03 14:00:02 +00:00
|
|
|
ScreenPoint& aOffset)
|
2013-05-01 14:49:27 +00:00
|
|
|
{
|
2013-05-01 20:10:17 +00:00
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
2013-05-01 18:12:08 +00:00
|
|
|
AndroidBridge::Bridge()->SyncFrameMetrics(aScrollOffset, aZoom, aCssPageRect,
|
2013-05-01 14:49:27 +00:00
|
|
|
aLayersUpdated, aDisplayPort,
|
|
|
|
aDisplayResolution, aIsFirstPaint,
|
2013-05-01 18:12:08 +00:00
|
|
|
aFixedLayerMargins, aOffset);
|
2013-05-01 14:49:27 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-04-28 06:46:30 +00:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|