2012-05-09 22:26:52 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2011-12-15 12:07:19 -08:00
|
|
|
/* vim: set sw=2 ts=2 et tw=80 : */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Content App.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* The Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Benoit Girard <bgirard@mozilla.com>
|
2011-12-20 12:12:54 -08:00
|
|
|
* Ali Juma <ajuma@mozilla.com>
|
2011-12-15 12:07:19 -08:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "CompositorParent.h"
|
2012-03-05 12:17:13 -08:00
|
|
|
#include "RenderTrace.h"
|
2011-12-15 12:07:19 -08:00
|
|
|
#include "ShadowLayersParent.h"
|
2012-05-07 16:05:13 -07:00
|
|
|
#include "BasicLayers.h"
|
2011-12-15 12:07:19 -08:00
|
|
|
#include "LayerManagerOGL.h"
|
2012-01-06 14:52:32 -08:00
|
|
|
#include "nsIWidget.h"
|
2012-02-09 19:47:50 -08:00
|
|
|
#include "nsGkAtoms.h"
|
2012-02-21 17:20:14 -08:00
|
|
|
#include "RenderTrace.h"
|
2011-12-15 12:07:19 -08:00
|
|
|
|
2012-01-26 11:23:13 -08:00
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
#include "AndroidBridge.h"
|
2012-02-02 19:28:22 -08:00
|
|
|
#include <android/log.h>
|
2012-02-03 18:48:05 -08:00
|
|
|
#endif
|
2012-02-02 19:28:22 -08:00
|
|
|
|
2012-03-12 13:32:02 -07:00
|
|
|
using base::Thread;
|
|
|
|
|
2011-12-15 12:07:19 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2012-05-08 12:40:41 -07:00
|
|
|
CompositorParent::CompositorParent(nsIWidget* aWidget, MessageLoop* aMsgLoop,
|
|
|
|
PlatformThreadId aThreadID, bool aRenderToEGLSurface,
|
|
|
|
int aSurfaceWidth, int aSurfaceHeight)
|
2012-04-24 06:22:34 -07:00
|
|
|
: mWidget(aWidget)
|
2012-02-06 09:38:23 -08:00
|
|
|
, mCurrentCompositeTask(NULL)
|
2012-02-08 09:08:03 -08:00
|
|
|
, mPaused(false)
|
2012-04-30 17:03:26 -07:00
|
|
|
, mXScale(1.0)
|
|
|
|
, mYScale(1.0)
|
2012-03-12 08:50:15 -07:00
|
|
|
, mIsFirstPaint(false)
|
2012-03-19 21:06:56 -07:00
|
|
|
, mLayersUpdated(false)
|
2012-04-24 06:22:34 -07:00
|
|
|
, mCompositorLoop(aMsgLoop)
|
|
|
|
, mThreadID(aThreadID)
|
2012-05-08 12:40:41 -07:00
|
|
|
, mRenderToEGLSurface(aRenderToEGLSurface)
|
|
|
|
, mEGLSurfaceSize(aSurfaceWidth, aSurfaceHeight)
|
2011-12-15 12:07:19 -08:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(CompositorParent);
|
|
|
|
}
|
|
|
|
|
2012-04-24 06:22:34 -07:00
|
|
|
MessageLoop*
|
|
|
|
CompositorParent::CompositorLoop()
|
|
|
|
{
|
|
|
|
return mCompositorLoop;
|
|
|
|
}
|
|
|
|
|
|
|
|
PlatformThreadId
|
|
|
|
CompositorParent::CompositorThreadID()
|
|
|
|
{
|
|
|
|
return mThreadID;
|
|
|
|
}
|
|
|
|
|
2011-12-15 12:07:19 -08:00
|
|
|
CompositorParent::~CompositorParent()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(CompositorParent);
|
|
|
|
}
|
|
|
|
|
2011-12-22 07:59:53 -08:00
|
|
|
void
|
|
|
|
CompositorParent::Destroy()
|
|
|
|
{
|
2012-01-06 14:52:32 -08:00
|
|
|
NS_ABORT_IF_FALSE(ManagedPLayersParent().Length() == 0,
|
|
|
|
"CompositorParent destroyed before managed PLayersParent");
|
2011-12-22 07:59:53 -08:00
|
|
|
|
2012-03-30 12:43:11 -07:00
|
|
|
// Ensure that the layer manager is destructed on the compositor thread.
|
2012-01-10 15:04:21 -08:00
|
|
|
mLayerManager = NULL;
|
2011-12-15 12:07:19 -08:00
|
|
|
}
|
|
|
|
|
2012-03-29 06:59:22 -07:00
|
|
|
bool
|
2012-03-30 12:43:11 -07:00
|
|
|
CompositorParent::RecvWillStop()
|
2012-03-29 06:59:22 -07:00
|
|
|
{
|
2012-03-29 08:26:58 -07:00
|
|
|
mPaused = true;
|
2012-03-30 12:43:11 -07:00
|
|
|
|
|
|
|
// Ensure that the layer manager is destroyed before CompositorChild.
|
|
|
|
mLayerManager->Destroy();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CompositorParent::RecvStop()
|
|
|
|
{
|
2011-12-22 07:59:53 -08:00
|
|
|
Destroy();
|
2011-12-16 16:21:51 -08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-03-28 15:00:10 -07:00
|
|
|
bool
|
|
|
|
CompositorParent::RecvPause()
|
|
|
|
{
|
|
|
|
PauseComposition();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CompositorParent::RecvResume()
|
|
|
|
{
|
|
|
|
ResumeComposition();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-02-03 18:35:58 -08:00
|
|
|
void
|
2012-03-12 13:32:02 -07:00
|
|
|
CompositorParent::ScheduleRenderOnCompositorThread()
|
2012-02-03 18:35:58 -08:00
|
|
|
{
|
2012-03-12 13:32:02 -07:00
|
|
|
CancelableTask *renderTask = NewRunnableMethod(this, &CompositorParent::ScheduleComposition);
|
2012-04-24 06:22:34 -07:00
|
|
|
CompositorLoop()->PostTask(FROM_HERE, renderTask);
|
2012-02-03 18:35:58 -08:00
|
|
|
}
|
|
|
|
|
2012-02-05 10:33:38 -08:00
|
|
|
void
|
|
|
|
CompositorParent::PauseComposition()
|
|
|
|
{
|
2012-04-24 06:22:34 -07:00
|
|
|
NS_ABORT_IF_FALSE(CompositorThreadID() == PlatformThread::CurrentId(),
|
2012-03-12 13:32:02 -07:00
|
|
|
"PauseComposition() can only be called on the compositor thread");
|
2012-02-06 10:57:06 -08:00
|
|
|
if (!mPaused) {
|
|
|
|
mPaused = true;
|
2012-02-05 10:33:38 -08:00
|
|
|
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
2012-02-06 10:57:06 -08:00
|
|
|
static_cast<LayerManagerOGL*>(mLayerManager.get())->gl()->ReleaseSurface();
|
2012-02-05 10:33:38 -08:00
|
|
|
#endif
|
2012-02-06 10:57:06 -08:00
|
|
|
}
|
2012-02-05 10:33:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CompositorParent::ResumeComposition()
|
|
|
|
{
|
2012-04-24 06:22:34 -07:00
|
|
|
NS_ABORT_IF_FALSE(CompositorThreadID() == PlatformThread::CurrentId(),
|
2012-03-12 13:32:02 -07:00
|
|
|
"ResumeComposition() can only be called on the compositor thread");
|
2012-02-07 08:26:52 -08:00
|
|
|
mPaused = false;
|
2012-02-05 10:33:38 -08:00
|
|
|
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
2012-02-07 08:26:52 -08:00
|
|
|
static_cast<LayerManagerOGL*>(mLayerManager.get())->gl()->RenewSurface();
|
2012-02-05 10:33:38 -08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-05-08 12:40:41 -07:00
|
|
|
void
|
|
|
|
CompositorParent::SetEGLSurfaceSize(int width, int height)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mRenderToEGLSurface, "Compositor created without RenderToEGLSurface ar provided");
|
|
|
|
mEGLSurfaceSize.SizeTo(width, height);
|
|
|
|
if (mLayerManager) {
|
|
|
|
static_cast<LayerManagerOGL*>(mLayerManager.get())->SetSurfaceSize(mEGLSurfaceSize.width, mEGLSurfaceSize.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-20 08:46:30 -07:00
|
|
|
void
|
|
|
|
CompositorParent::ResumeCompositionAndResize(int width, int height)
|
|
|
|
{
|
2012-05-08 12:40:41 -07:00
|
|
|
SetEGLSurfaceSize(width, height);
|
2012-04-20 08:46:30 -07:00
|
|
|
ResumeComposition();
|
|
|
|
}
|
|
|
|
|
2012-02-05 10:33:38 -08:00
|
|
|
void
|
2012-03-12 13:32:02 -07:00
|
|
|
CompositorParent::SchedulePauseOnCompositorThread()
|
2012-02-05 10:33:38 -08:00
|
|
|
{
|
|
|
|
CancelableTask *pauseTask = NewRunnableMethod(this,
|
|
|
|
&CompositorParent::PauseComposition);
|
2012-04-24 06:22:34 -07:00
|
|
|
CompositorLoop()->PostTask(FROM_HERE, pauseTask);
|
2012-02-05 10:33:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-04-20 08:46:30 -07:00
|
|
|
CompositorParent::ScheduleResumeOnCompositorThread(int width, int height)
|
2012-02-05 10:33:38 -08:00
|
|
|
{
|
2012-04-20 08:46:30 -07:00
|
|
|
CancelableTask *resumeTask =
|
|
|
|
NewRunnableMethod(this, &CompositorParent::ResumeCompositionAndResize, width, height);
|
2012-04-24 06:22:34 -07:00
|
|
|
CompositorLoop()->PostTask(FROM_HERE, resumeTask);
|
2012-02-05 10:33:38 -08:00
|
|
|
}
|
|
|
|
|
2012-04-24 06:22:36 -07:00
|
|
|
void
|
|
|
|
CompositorParent::ScheduleTask(CancelableTask* task, int time)
|
|
|
|
{
|
|
|
|
if (time) {
|
|
|
|
MessageLoop::current()->PostTask(FROM_HERE, task);
|
|
|
|
} else {
|
|
|
|
MessageLoop::current()->PostDelayedTask(FROM_HERE, task, time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-15 12:07:19 -08:00
|
|
|
void
|
2012-01-06 14:52:32 -08:00
|
|
|
CompositorParent::ScheduleComposition()
|
2011-12-15 12:07:19 -08:00
|
|
|
{
|
2012-02-06 09:38:23 -08:00
|
|
|
if (mCurrentCompositeTask) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-08 19:22:30 -08:00
|
|
|
bool initialComposition = mLastCompose.IsNull();
|
|
|
|
TimeDuration delta;
|
|
|
|
if (!initialComposition)
|
|
|
|
delta = mozilla::TimeStamp::Now() - mLastCompose;
|
2012-02-06 10:51:33 -08:00
|
|
|
|
2012-02-10 15:06:17 -08:00
|
|
|
#ifdef COMPOSITOR_PERFORMANCE_WARNING
|
|
|
|
mExpectedComposeTime = mozilla::TimeStamp::Now() + TimeDuration::FromMilliseconds(15);
|
|
|
|
#endif
|
|
|
|
|
2012-02-06 09:38:23 -08:00
|
|
|
mCurrentCompositeTask = NewRunnableMethod(this, &CompositorParent::Composite);
|
2012-03-12 13:32:02 -07:00
|
|
|
|
|
|
|
// Since 60 fps is the maximum frame rate we can acheive, scheduling composition
|
|
|
|
// events less than 15 ms apart wastes computation..
|
2012-02-08 19:22:30 -08:00
|
|
|
if (!initialComposition && delta.ToMilliseconds() < 15) {
|
2012-02-10 15:06:17 -08:00
|
|
|
#ifdef COMPOSITOR_PERFORMANCE_WARNING
|
|
|
|
mExpectedComposeTime = mozilla::TimeStamp::Now() + TimeDuration::FromMilliseconds(15 - delta.ToMilliseconds());
|
|
|
|
#endif
|
2012-04-24 06:22:36 -07:00
|
|
|
ScheduleTask(mCurrentCompositeTask, 15 - delta.ToMilliseconds());
|
2012-02-06 10:51:33 -08:00
|
|
|
} else {
|
2012-04-24 06:22:36 -07:00
|
|
|
ScheduleTask(mCurrentCompositeTask, 0);
|
2012-02-06 10:51:33 -08:00
|
|
|
}
|
2012-02-01 11:31:34 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CompositorParent::SetTransformation(float aScale, nsIntPoint aScrollOffset)
|
|
|
|
{
|
|
|
|
mXScale = aScale;
|
|
|
|
mYScale = aScale;
|
|
|
|
mScrollOffset = aScrollOffset;
|
2011-12-19 10:17:29 -08:00
|
|
|
}
|
2011-12-15 12:07:25 -08:00
|
|
|
|
2011-12-19 10:17:29 -08:00
|
|
|
void
|
|
|
|
CompositorParent::Composite()
|
|
|
|
{
|
2012-04-24 06:22:34 -07:00
|
|
|
NS_ABORT_IF_FALSE(CompositorThreadID() == PlatformThread::CurrentId(),
|
2012-03-12 13:32:02 -07:00
|
|
|
"Composite can only be called on the compositor thread");
|
2012-02-06 09:38:23 -08:00
|
|
|
mCurrentCompositeTask = NULL;
|
|
|
|
|
2012-02-10 15:06:17 -08:00
|
|
|
mLastCompose = mozilla::TimeStamp::Now();
|
|
|
|
|
2012-03-14 07:54:34 -07:00
|
|
|
if (mPaused || !mLayerManager || !mLayerManager->GetRoot()) {
|
2011-12-15 12:07:25 -08:00
|
|
|
return;
|
2011-12-19 10:17:29 -08:00
|
|
|
}
|
2011-12-15 12:07:25 -08:00
|
|
|
|
2012-02-17 14:58:03 -08:00
|
|
|
TransformShadowTree();
|
2012-02-09 19:47:50 -08:00
|
|
|
|
2012-02-21 17:20:14 -08:00
|
|
|
Layer* aLayer = mLayerManager->GetRoot();
|
|
|
|
mozilla::layers::RenderTraceLayers(aLayer, "0000");
|
|
|
|
|
2011-12-15 12:07:25 -08:00
|
|
|
mLayerManager->EndEmptyTransaction();
|
2012-02-10 15:06:17 -08:00
|
|
|
|
|
|
|
#ifdef COMPOSITOR_PERFORMANCE_WARNING
|
|
|
|
if (mExpectedComposeTime + TimeDuration::FromMilliseconds(15) < mozilla::TimeStamp::Now()) {
|
2012-03-05 16:58:18 -08:00
|
|
|
printf_stderr("Compositor: Composite took %i ms.\n",
|
|
|
|
15 + (int)(mozilla::TimeStamp::Now() - mExpectedComposeTime).ToMilliseconds());
|
2012-02-10 15:06:17 -08:00
|
|
|
}
|
|
|
|
#endif
|
2011-12-15 12:07:19 -08:00
|
|
|
}
|
|
|
|
|
2012-02-20 08:30:05 -08:00
|
|
|
// Do a breadth-first search to find the first layer in the tree that is
|
|
|
|
// scrollable.
|
2012-02-07 22:17:54 -08:00
|
|
|
Layer*
|
|
|
|
CompositorParent::GetPrimaryScrollableLayer()
|
|
|
|
{
|
|
|
|
Layer* root = mLayerManager->GetRoot();
|
|
|
|
|
|
|
|
nsTArray<Layer*> queue;
|
|
|
|
queue.AppendElement(root);
|
2012-03-12 13:32:02 -07:00
|
|
|
while (queue.Length()) {
|
|
|
|
ContainerLayer* containerLayer = queue[0]->AsContainerLayer();
|
|
|
|
queue.RemoveElementAt(0);
|
2012-02-07 22:17:54 -08:00
|
|
|
if (!containerLayer) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FrameMetrics& frameMetrics = containerLayer->GetFrameMetrics();
|
2012-02-20 08:30:05 -08:00
|
|
|
if (frameMetrics.IsScrollable()) {
|
2012-02-07 22:17:54 -08:00
|
|
|
return containerLayer;
|
|
|
|
}
|
|
|
|
|
|
|
|
Layer* child = containerLayer->GetFirstChild();
|
|
|
|
while (child) {
|
|
|
|
queue.AppendElement(child);
|
|
|
|
child = child->GetNextSibling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2012-04-17 10:56:25 -07:00
|
|
|
// Go down shadow layer tree, setting properties to match their non-shadow
|
|
|
|
// counterparts.
|
|
|
|
static void
|
|
|
|
SetShadowProperties(Layer* aLayer)
|
|
|
|
{
|
|
|
|
// FIXME: Bug 717688 -- Do these updates in ShadowLayersParent::RecvUpdate.
|
|
|
|
ShadowLayer* shadow = aLayer->AsShadowLayer();
|
|
|
|
shadow->SetShadowTransform(aLayer->GetTransform());
|
|
|
|
shadow->SetShadowVisibleRegion(aLayer->GetVisibleRegion());
|
|
|
|
shadow->SetShadowClipRect(aLayer->GetClipRect());
|
|
|
|
|
|
|
|
for (Layer* child = aLayer->GetFirstChild();
|
|
|
|
child; child = child->GetNextSibling()) {
|
|
|
|
SetShadowProperties(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 11:31:34 -08:00
|
|
|
void
|
2012-02-17 14:58:03 -08:00
|
|
|
CompositorParent::TransformShadowTree()
|
2012-02-01 11:31:34 -08:00
|
|
|
{
|
2012-02-17 14:58:03 -08:00
|
|
|
Layer* layer = GetPrimaryScrollableLayer();
|
|
|
|
ShadowLayer* shadow = layer->AsShadowLayer();
|
|
|
|
ContainerLayer* container = layer->AsContainerLayer();
|
2012-02-01 11:31:34 -08:00
|
|
|
|
2012-02-17 14:58:03 -08:00
|
|
|
const FrameMetrics* metrics = &container->GetFrameMetrics();
|
2012-03-12 08:50:27 -07:00
|
|
|
const gfx3DMatrix& rootTransform = mLayerManager->GetRoot()->GetTransform();
|
2012-02-17 14:58:03 -08:00
|
|
|
const gfx3DMatrix& currentTransform = layer->GetTransform();
|
2012-02-01 11:31:34 -08:00
|
|
|
|
2012-03-12 13:32:02 -07:00
|
|
|
float rootScaleX = rootTransform.GetXScale();
|
|
|
|
float rootScaleY = rootTransform.GetYScale();
|
2012-03-12 08:50:27 -07:00
|
|
|
|
|
|
|
if (mIsFirstPaint && metrics) {
|
|
|
|
nsIntPoint scrollOffset = metrics->mViewportScrollOffset;
|
|
|
|
mContentSize = metrics->mContentSize;
|
2012-04-30 17:03:26 -07:00
|
|
|
SetFirstPaintViewport(scrollOffset.x, scrollOffset.y,
|
|
|
|
1/rootScaleX,
|
|
|
|
mContentSize.width,
|
|
|
|
mContentSize.height,
|
|
|
|
metrics->mCSSContentSize.width,
|
|
|
|
metrics->mCSSContentSize.height);
|
2012-03-12 08:50:27 -07:00
|
|
|
mIsFirstPaint = false;
|
|
|
|
} else if (metrics && (metrics->mContentSize != mContentSize)) {
|
|
|
|
mContentSize = metrics->mContentSize;
|
2012-04-30 17:03:26 -07:00
|
|
|
SetPageSize(1/rootScaleX, mContentSize.width,
|
|
|
|
mContentSize.height,
|
|
|
|
metrics->mCSSContentSize.width,
|
|
|
|
metrics->mCSSContentSize.height);
|
2012-03-12 08:50:27 -07:00
|
|
|
}
|
|
|
|
|
2012-03-17 08:08:22 -07:00
|
|
|
// We synchronise the viewport information with Java after sending the above
|
|
|
|
// notifications, so that Java can take these into account in its response.
|
2012-03-19 21:05:45 -07:00
|
|
|
if (metrics) {
|
|
|
|
// Calculate the absolute display port to send to Java
|
|
|
|
nsIntRect displayPort = metrics->mDisplayPort;
|
|
|
|
nsIntPoint scrollOffset = metrics->mViewportScrollOffset;
|
|
|
|
displayPort.x += scrollOffset.x;
|
|
|
|
displayPort.y += scrollOffset.y;
|
|
|
|
|
2012-04-30 17:03:26 -07:00
|
|
|
SyncViewportInfo(displayPort, 1/rootScaleX, mLayersUpdated,
|
|
|
|
mScrollOffset, mXScale, mYScale);
|
2012-03-19 21:06:56 -07:00
|
|
|
mLayersUpdated = false;
|
2012-03-19 21:05:45 -07:00
|
|
|
}
|
2012-03-12 08:50:27 -07: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
|
|
|
|
// primary scrollable layer. We compare this to the desired zoom and scroll
|
|
|
|
// offset in the view transform we obtained from Java in order to compute the
|
|
|
|
// transformation we need to apply.
|
2012-04-26 12:24:06 -07:00
|
|
|
if (metrics) {
|
2012-03-12 08:50:27 -07:00
|
|
|
float tempScaleDiffX = rootScaleX * mXScale;
|
|
|
|
float tempScaleDiffY = rootScaleY * mYScale;
|
2012-02-01 11:31:34 -08:00
|
|
|
|
2012-04-26 12:24:06 -07:00
|
|
|
nsIntPoint metricsScrollOffset(0, 0);
|
|
|
|
if (metrics->IsScrollable())
|
|
|
|
metricsScrollOffset = metrics->mViewportScrollOffset;
|
2012-02-01 11:31:34 -08:00
|
|
|
|
2012-02-20 08:30:05 -08:00
|
|
|
nsIntPoint scrollCompensation(
|
|
|
|
(mScrollOffset.x / tempScaleDiffX - metricsScrollOffset.x) * mXScale,
|
|
|
|
(mScrollOffset.y / tempScaleDiffY - metricsScrollOffset.y) * mYScale);
|
2012-03-12 08:50:27 -07:00
|
|
|
ViewTransform treeTransform(-scrollCompensation, mXScale, mYScale);
|
|
|
|
shadow->SetShadowTransform(gfx3DMatrix(treeTransform) * currentTransform);
|
2012-02-20 08:30:05 -08:00
|
|
|
} else {
|
2012-03-12 08:50:27 -07:00
|
|
|
ViewTransform treeTransform(nsIntPoint(0,0), mXScale, mYScale);
|
|
|
|
shadow->SetShadowTransform(gfx3DMatrix(treeTransform) * currentTransform);
|
2012-02-20 08:30:05 -08:00
|
|
|
}
|
2012-04-30 17:03:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CompositorParent::SetFirstPaintViewport(float aOffsetX, float aOffsetY, float aZoom,
|
|
|
|
float aPageWidth, float aPageHeight,
|
|
|
|
float aCssPageWidth, float aCssPageHeight)
|
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
mozilla::AndroidBridge::Bridge()->SetFirstPaintViewport(aOffsetX, aOffsetY,
|
|
|
|
aZoom, aPageWidth, aPageHeight,
|
|
|
|
aCssPageWidth, aCssPageHeight);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CompositorParent::SetPageSize(float aZoom, float aPageWidth, float aPageHeight,
|
|
|
|
float aCssPageWidth, float aCssPageHeight)
|
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
mozilla::AndroidBridge::Bridge()->SetPageSize(aZoom, aPageWidth, aPageHeight,
|
|
|
|
aCssPageWidth, aCssPageHeight);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CompositorParent::SyncViewportInfo(const nsIntRect& aDisplayPort,
|
|
|
|
float aDisplayResolution, bool aLayersUpdated,
|
|
|
|
nsIntPoint& aScrollOffset, float& aScaleX, float& aScaleY)
|
|
|
|
{
|
|
|
|
#ifdef MOZ_WIDGET_ANDROID
|
|
|
|
mozilla::AndroidBridge::Bridge()->SyncViewportInfo(aDisplayPort, aDisplayResolution, aLayersUpdated,
|
|
|
|
aScrollOffset, aScaleX, aScaleY);
|
2012-02-17 16:41:16 -08:00
|
|
|
#endif
|
2012-02-01 11:31:34 -08:00
|
|
|
}
|
|
|
|
|
2012-01-06 14:52:32 -08:00
|
|
|
void
|
2012-03-12 08:50:15 -07:00
|
|
|
CompositorParent::ShadowLayersUpdated(bool isFirstPaint)
|
2012-01-06 14:52:32 -08:00
|
|
|
{
|
2012-03-12 08:50:15 -07:00
|
|
|
mIsFirstPaint = mIsFirstPaint || isFirstPaint;
|
2012-03-19 21:06:56 -07:00
|
|
|
mLayersUpdated = true;
|
2012-01-06 14:52:32 -08:00
|
|
|
const nsTArray<PLayersParent*>& shadowParents = ManagedPLayersParent();
|
|
|
|
NS_ABORT_IF_FALSE(shadowParents.Length() <= 1,
|
|
|
|
"can only support at most 1 ShadowLayersParent");
|
|
|
|
if (shadowParents.Length()) {
|
|
|
|
Layer* root = static_cast<ShadowLayersParent*>(shadowParents[0])->GetRoot();
|
|
|
|
mLayerManager->SetRoot(root);
|
|
|
|
SetShadowProperties(root);
|
2011-12-15 12:07:19 -08:00
|
|
|
}
|
2012-01-06 14:52:32 -08:00
|
|
|
ScheduleComposition();
|
|
|
|
}
|
2011-12-15 12:07:19 -08:00
|
|
|
|
2012-01-06 14:52:32 -08:00
|
|
|
PLayersParent*
|
|
|
|
CompositorParent::AllocPLayers(const LayersBackend &backendType)
|
|
|
|
{
|
|
|
|
if (backendType == LayerManager::LAYERS_OPENGL) {
|
2012-05-08 12:40:41 -07:00
|
|
|
nsRefPtr<LayerManagerOGL> layerManager;
|
|
|
|
layerManager =
|
|
|
|
new LayerManagerOGL(mWidget, mEGLSurfaceSize.width, mEGLSurfaceSize.height, mRenderToEGLSurface);
|
2012-01-16 07:31:16 -08:00
|
|
|
mWidget = NULL;
|
2012-01-06 14:52:32 -08:00
|
|
|
mLayerManager = layerManager;
|
2011-12-15 12:07:25 -08:00
|
|
|
|
2011-12-15 12:07:19 -08:00
|
|
|
if (!layerManager->Initialize()) {
|
|
|
|
NS_ERROR("Failed to init OGL Layers");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-05-07 16:05:13 -07:00
|
|
|
ShadowLayerManager* slm = layerManager->AsShadowManager();
|
|
|
|
if (!slm) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return new ShadowLayersParent(slm, this);
|
|
|
|
} else if (backendType == LayerManager::LAYERS_BASIC) {
|
|
|
|
nsRefPtr<LayerManager> layerManager = new BasicShadowLayerManager(mWidget);
|
|
|
|
mWidget = NULL;
|
|
|
|
mLayerManager = layerManager;
|
2011-12-15 12:07:19 -08:00
|
|
|
ShadowLayerManager* slm = layerManager->AsShadowManager();
|
|
|
|
if (!slm) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-12-15 12:20:06 -08:00
|
|
|
return new ShadowLayersParent(slm, this);
|
2011-12-15 12:07:19 -08:00
|
|
|
} else {
|
|
|
|
NS_ERROR("Unsupported backend selected for Async Compositor");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CompositorParent::DeallocPLayers(PLayersParent* actor)
|
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|
|
|
|
|