2010-07-21 14:17:33 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
|
|
|
/* ***** 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 Code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* The Mozilla Foundation
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Chris Jones <jones.chris.g@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 protocol PCompositor;
|
|
|
|
include protocol PLayer;
|
2010-08-20 16:24:41 -07:00
|
|
|
include protocol PRenderFrame;
|
2010-07-21 14:17:33 -07:00
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
include "IPC/ShadowLayerUtils.h";
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
using gfx3DMatrix;
|
|
|
|
using gfxRGBA;
|
|
|
|
using nsIntPoint;
|
|
|
|
using nsIntRect;
|
|
|
|
using nsIntRegion;
|
|
|
|
using nsIntSize;
|
|
|
|
using mozilla::GraphicsFilterType;
|
2010-09-03 13:10:45 -07:00
|
|
|
using mozilla::layers::FrameMetrics;
|
2010-09-13 22:23:08 -07:00
|
|
|
using mozilla::layers::SurfaceDescriptorX11;
|
2010-07-21 14:17:33 -07:00
|
|
|
using mozilla::null_t;
|
2010-12-30 23:40:19 -08:00
|
|
|
using mozilla::LayersBackend;
|
2010-07-21 14:17:33 -07: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 {
|
|
|
|
|
|
|
|
// Create a shadow layer for |layer|
|
|
|
|
struct OpCreateThebesLayer { PLayer layer; };
|
|
|
|
struct OpCreateContainerLayer { PLayer layer; };
|
|
|
|
struct OpCreateImageLayer { PLayer layer; };
|
|
|
|
struct OpCreateColorLayer { PLayer layer; };
|
|
|
|
struct OpCreateCanvasLayer { PLayer layer; };
|
|
|
|
|
|
|
|
// For the "buffer creation" operations, we send an initial front
|
|
|
|
// buffer that only contains (transparent) black pixels just so that
|
|
|
|
// we can swap it back after the first OpPaint without a special case.
|
2010-09-13 22:23:08 -07:00
|
|
|
|
|
|
|
union SurfaceDescriptor {
|
|
|
|
Shmem;
|
|
|
|
SurfaceDescriptorX11;
|
|
|
|
};
|
|
|
|
|
2011-04-20 21:38:39 -07:00
|
|
|
struct YUVImage {
|
|
|
|
Shmem Ydata;
|
|
|
|
Shmem Udata;
|
|
|
|
Shmem Vdata;
|
2011-07-04 19:52:00 -07:00
|
|
|
nsIntRect picture;
|
2011-04-20 21:38:39 -07:00
|
|
|
};
|
|
|
|
|
2011-04-20 16:21:56 -07:00
|
|
|
union SharedImage {
|
|
|
|
SurfaceDescriptor;
|
2011-04-20 21:38:39 -07:00
|
|
|
YUVImage;
|
2011-04-20 16:21:56 -07:00
|
|
|
};
|
|
|
|
|
2010-09-28 15:05:30 -07:00
|
|
|
struct ThebesBuffer {
|
|
|
|
SurfaceDescriptor buffer;
|
|
|
|
nsIntRect rect;
|
|
|
|
nsIntPoint rotation;
|
|
|
|
};
|
2010-11-05 00:17:07 -07:00
|
|
|
union OptionalThebesBuffer { ThebesBuffer; null_t; };
|
2010-09-28 15:05:30 -07:00
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
struct OpCreateThebesBuffer {
|
|
|
|
PLayer layer;
|
2010-12-30 23:40:31 -08:00
|
|
|
OptionalThebesBuffer initialFront;
|
2010-09-28 15:05:30 -07:00
|
|
|
nsIntRegion frontValidRegion;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
2010-09-02 20:05:01 -07:00
|
|
|
struct OpDestroyThebesFrontBuffer { PLayer layer; };
|
2010-07-21 14:17:33 -07:00
|
|
|
|
|
|
|
struct OpCreateCanvasBuffer {
|
|
|
|
PLayer layer;
|
|
|
|
nsIntSize size;
|
2011-04-20 14:45:57 -07:00
|
|
|
SurfaceDescriptor initialFront;
|
2011-06-09 18:17:02 -07:00
|
|
|
bool needYFlip;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
2010-09-02 20:05:01 -07:00
|
|
|
struct OpDestroyCanvasFrontBuffer { PLayer layer; };
|
2010-07-21 14:17:33 -07:00
|
|
|
|
|
|
|
struct OpCreateImageBuffer {
|
|
|
|
PLayer layer;
|
|
|
|
nsIntSize size;
|
2011-04-20 16:21:56 -07:00
|
|
|
SharedImage initialFront;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
2010-09-02 20:05:01 -07:00
|
|
|
struct OpDestroyImageFrontBuffer { PLayer layer; };
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
|
|
|
|
// Change a layer's attributes
|
|
|
|
struct CommonLayerAttributes {
|
|
|
|
nsIntRegion visibleRegion;
|
|
|
|
gfx3DMatrix transform;
|
2010-09-02 02:18:40 -07:00
|
|
|
PRUint32 contentFlags;
|
2010-07-21 14:17:33 -07:00
|
|
|
float opacity;
|
|
|
|
bool useClipRect;
|
|
|
|
nsIntRect clipRect;
|
2011-01-25 22:26:37 -08:00
|
|
|
bool useTileSourceRect;
|
|
|
|
nsIntRect tileSourceRect;
|
2011-04-05 22:00:25 -07:00
|
|
|
bool isFixedPosition;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
|
|
|
|
2010-09-03 13:10:46 -07:00
|
|
|
struct ThebesLayerAttributes {
|
|
|
|
nsIntRegion validRegion;
|
|
|
|
};
|
2010-09-03 13:10:45 -07:00
|
|
|
struct ContainerLayerAttributes{ FrameMetrics metrics; };
|
2010-07-21 14:17:33 -07:00
|
|
|
struct ColorLayerAttributes { gfxRGBA color; };
|
|
|
|
struct CanvasLayerAttributes { GraphicsFilterType filter; };
|
|
|
|
struct ImageLayerAttributes { GraphicsFilterType filter; };
|
|
|
|
|
|
|
|
union SpecificLayerAttributes {
|
|
|
|
null_t;
|
|
|
|
ThebesLayerAttributes;
|
2010-09-03 13:10:45 -07:00
|
|
|
ContainerLayerAttributes;
|
2010-07-21 14:17:33 -07:00
|
|
|
ColorLayerAttributes;
|
|
|
|
CanvasLayerAttributes;
|
|
|
|
ImageLayerAttributes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LayerAttributes {
|
|
|
|
CommonLayerAttributes common;
|
|
|
|
SpecificLayerAttributes specific;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct OpSetLayerAttributes {
|
|
|
|
PLayer layer;
|
|
|
|
LayerAttributes attrs;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Monkey with the tree structure
|
|
|
|
struct OpSetRoot { PLayer root; };
|
|
|
|
struct OpInsertAfter { PLayer container; PLayer childLayer; PLayer after; };
|
|
|
|
struct OpAppendChild { PLayer container; PLayer childLayer; };
|
|
|
|
struct OpRemoveChild { PLayer container; PLayer childLayer; };
|
|
|
|
|
|
|
|
|
|
|
|
// Paint (buffer update)
|
|
|
|
struct OpPaintThebesBuffer {
|
|
|
|
PLayer layer;
|
|
|
|
ThebesBuffer newFrontBuffer;
|
2010-09-13 22:23:08 -07:00
|
|
|
nsIntRegion updatedRegion;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct OpPaintCanvas {
|
|
|
|
PLayer layer;
|
2011-04-20 14:45:57 -07:00
|
|
|
SurfaceDescriptor newFrontBuffer;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct OpPaintImage {
|
|
|
|
PLayer layer;
|
2011-04-20 16:21:56 -07:00
|
|
|
SharedImage newFrontBuffer;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// A unit of a changeset; a set of these comprise a changeset
|
|
|
|
union Edit {
|
|
|
|
OpCreateThebesLayer;
|
|
|
|
OpCreateContainerLayer;
|
|
|
|
OpCreateImageLayer;
|
|
|
|
OpCreateColorLayer;
|
|
|
|
OpCreateCanvasLayer;
|
|
|
|
OpCreateCanvasBuffer;
|
|
|
|
OpCreateThebesBuffer;
|
|
|
|
OpCreateImageBuffer;
|
2010-09-02 20:05:01 -07:00
|
|
|
OpDestroyThebesFrontBuffer;
|
|
|
|
OpDestroyCanvasFrontBuffer;
|
|
|
|
OpDestroyImageFrontBuffer;
|
2010-07-21 14:17:33 -07:00
|
|
|
|
|
|
|
OpSetLayerAttributes;
|
|
|
|
|
|
|
|
OpSetRoot;
|
|
|
|
OpInsertAfter;
|
|
|
|
OpAppendChild;
|
|
|
|
OpRemoveChild;
|
|
|
|
|
|
|
|
OpPaintThebesBuffer;
|
|
|
|
OpPaintCanvas;
|
|
|
|
OpPaintImage;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Replies to operations
|
2010-09-13 22:23:08 -07:00
|
|
|
struct OpBufferSwap { PLayer layer; SurfaceDescriptor newBackBuffer; };
|
2010-07-21 14:17:33 -07:00
|
|
|
|
2011-04-20 21:38:39 -07:00
|
|
|
struct OpImageSwap { PLayer layer; SharedImage newBackImage; };
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
struct OpThebesBufferSwap {
|
|
|
|
PLayer layer;
|
|
|
|
ThebesBuffer newBackBuffer;
|
2010-09-13 22:23:08 -07:00
|
|
|
nsIntRegion newValidRegion;
|
2010-11-05 00:17:07 -07:00
|
|
|
// If the parent took the child's old back buffer and returned its
|
|
|
|
// old front buffer, |readOnlyFrontBuffer| may (if non-null) contain
|
|
|
|
// the child's old back buffer (parent's new front buffer). This
|
|
|
|
// buffer can be used to read back the newly updated region into the
|
|
|
|
// child's new back buffer. This buffer must be considered
|
|
|
|
// read-only, but sadly that's not enforced.
|
|
|
|
OptionalThebesBuffer readOnlyFrontBuffer;
|
|
|
|
nsIntRegion frontUpdatedRegion;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// Unit of a "changeset reply". This is a weird abstraction, probably
|
|
|
|
// only to be used for buffer swapping.
|
|
|
|
union EditReply {
|
|
|
|
OpBufferSwap;
|
2010-09-13 22:23:08 -07:00
|
|
|
OpThebesBufferSwap;
|
2011-04-20 21:38:39 -07:00
|
|
|
OpImageSwap;
|
2010-07-21 14:17:33 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
sync protocol PLayers {
|
2010-08-20 16:24:41 -07:00
|
|
|
manager PRenderFrame /*or PCompositor or PMedia or PPlugin*/;
|
2010-07-21 14:17:33 -07:00
|
|
|
manages PLayer;
|
|
|
|
|
|
|
|
parent:
|
|
|
|
async PLayer();
|
|
|
|
|
|
|
|
sync Update(Edit[] cset)
|
|
|
|
returns (EditReply[] reply);
|
|
|
|
|
2010-12-30 23:40:19 -08:00
|
|
|
sync GetParentType()
|
|
|
|
returns (LayersBackend backend);
|
|
|
|
|
2010-07-21 14:17:33 -07:00
|
|
|
async __delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|