2010-07-21 21:17:33 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2010-07-21 21:17:33 +00:00
|
|
|
|
2012-07-13 19:38:09 +00:00
|
|
|
include LayersSurfaces;
|
2013-09-06 15:41:00 +00:00
|
|
|
include LayersMessages;
|
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
|
|
|
include protocol PCompositable;
|
2012-01-19 14:45:37 +00:00
|
|
|
include protocol PCompositor;
|
2010-07-21 21:17:33 +00:00
|
|
|
include protocol PLayer;
|
2010-08-20 23:24:41 +00:00
|
|
|
include protocol PRenderFrame;
|
2013-12-12 01:44:44 +00:00
|
|
|
include protocol PTexture;
|
2010-07-21 21:17:33 +00:00
|
|
|
|
2013-07-26 19:28:31 +00:00
|
|
|
include "mozilla/GfxMessageUtils.h";
|
2010-09-03 20:10:45 +00:00
|
|
|
|
2013-10-01 19:25:07 +00:00
|
|
|
using struct mozilla::layers::TextureInfo from "mozilla/layers/CompositorTypes.h";
|
2014-03-10 04:47:12 +00:00
|
|
|
using struct mozilla::void_t from "ipc/IPCMessageUtils.h";
|
2014-04-26 02:34:05 +00:00
|
|
|
using mozilla::layers::TextureFlags from "mozilla/layers/CompositorTypes.h";
|
2013-04-12 07:28:55 +00:00
|
|
|
|
2010-07-21 21:17:33 +00:00
|
|
|
/**
|
|
|
|
* The layers protocol is spoken between thread contexts that manage
|
|
|
|
* layer (sub)trees. The protocol comprises atomically publishing
|
|
|
|
* layer subtrees to a "shadow" thread context (which grafts the
|
|
|
|
* subtree into its own tree), and atomically updating a published
|
|
|
|
* subtree. ("Atomic" in this sense is wrt painting.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2014-03-10 04:47:12 +00:00
|
|
|
union MaybeTransform {
|
|
|
|
gfx3DMatrix;
|
|
|
|
void_t;
|
|
|
|
};
|
|
|
|
|
2013-04-24 18:42:40 +00:00
|
|
|
sync protocol PLayerTransaction {
|
2012-01-19 14:45:37 +00:00
|
|
|
manager PRenderFrame or PCompositor;
|
2010-07-21 21:17:33 +00:00
|
|
|
manages PLayer;
|
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
|
|
|
manages PCompositable;
|
2013-12-12 01:44:44 +00:00
|
|
|
manages PTexture;
|
2010-07-21 21:17:33 +00:00
|
|
|
|
2014-05-06 01:56:40 +00:00
|
|
|
child:
|
|
|
|
async ParentAsyncMessage(AsyncParentMessageData aMessage);
|
|
|
|
|
2010-07-21 21:17:33 +00:00
|
|
|
parent:
|
|
|
|
async PLayer();
|
2013-04-12 07:28:55 +00:00
|
|
|
async PCompositable(TextureInfo aTextureInfo);
|
2014-04-26 02:34:05 +00:00
|
|
|
async PTexture(SurfaceDescriptor aSharedData, TextureFlags aTextureFlags);
|
2010-07-21 21:17:33 +00:00
|
|
|
|
2012-03-12 15:50:07 +00:00
|
|
|
// The isFirstPaint flag can be used to indicate that this is the first update
|
|
|
|
// for a particular document.
|
2013-12-16 05:38:42 +00:00
|
|
|
sync Update(Edit[] cset, TargetConfig targetConfig, bool isFirstPaint, bool scheduleComposite)
|
2010-07-21 21:17:33 +00:00
|
|
|
returns (EditReply[] reply);
|
|
|
|
|
2014-02-14 08:59:23 +00:00
|
|
|
// Testing APIs
|
2014-03-21 21:59:57 +00:00
|
|
|
|
|
|
|
// Enter test mode, set the sample time to sampleTime, and resample
|
|
|
|
// animations. sampleTime must not be null.
|
|
|
|
sync SetTestSampleTime(TimeStamp sampleTime);
|
|
|
|
// Leave test mode and resume normal compositing
|
|
|
|
sync LeaveTestMode();
|
|
|
|
|
2013-05-30 00:38:27 +00:00
|
|
|
sync GetOpacity(PLayer layer) returns (float opacity);
|
2014-03-10 04:47:12 +00:00
|
|
|
|
|
|
|
// Returns the value of the transform applied to the layer by animation after
|
|
|
|
// factoring out translation components introduced to account for the offset
|
|
|
|
// of the corresponding frame and transform origin and after converting to CSS
|
|
|
|
// pixels. If the layer is not transformed by animation, the return value will
|
|
|
|
// be void_t.
|
|
|
|
sync GetAnimationTransform(PLayer layer) returns (MaybeTransform transform);
|
2013-05-30 00:38:27 +00:00
|
|
|
|
2014-02-14 08:59:23 +00:00
|
|
|
// The next time this layer is composited, add this async scroll offset in
|
|
|
|
// CSS pixels.
|
|
|
|
// Useful for testing rendering of async scrolling.
|
|
|
|
async SetAsyncScrollOffset(PLayer layer, int32_t x, int32_t y);
|
|
|
|
|
2012-05-01 19:23:39 +00:00
|
|
|
// We don't need to send a sync transaction if
|
|
|
|
// no transaction operate require a swap.
|
2013-12-16 05:38:42 +00:00
|
|
|
async UpdateNoSwap(Edit[] cset, TargetConfig targetConfig, bool isFirstPaint, bool scheduleComposite);
|
2012-05-01 19:23:39 +00:00
|
|
|
|
2012-11-08 03:51:55 +00:00
|
|
|
// Drop any front buffers that might be retained on the compositor
|
|
|
|
// side.
|
|
|
|
async ClearCachedResources();
|
2014-05-06 01:56:40 +00:00
|
|
|
|
2014-03-03 00:59:58 +00:00
|
|
|
// Schedule a composite if one isn't already scheduled.
|
|
|
|
async ForceComposite();
|
2012-11-08 03:51:55 +00:00
|
|
|
|
2014-05-06 01:56:40 +00:00
|
|
|
async ChildAsyncMessages(AsyncChildMessageData[] aMessages);
|
|
|
|
|
2010-07-21 21:17:33 +00:00
|
|
|
async __delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|