This adds a WebRenderScrollData class (which contains a list of WebRenderLayerScrollData objects, among other things), and adds it to the DPEnd/DPSyncEnd messages sent across PWebRenderBridge. These classes are skeletons for now (more stuff will be added to them in future patches). MozReview-Commit-ID: 9duxwlUpdu7
76 lines
3.4 KiB
Plaintext
76 lines
3.4 KiB
Plaintext
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* vim: sw=2 ts=8 et :
|
|
*/
|
|
/* 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 LayersSurfaces;
|
|
include LayersMessages;
|
|
include "mozilla/GfxMessageUtils.h";
|
|
include "mozilla/layers/WebRenderMessageUtils.h";
|
|
|
|
include WebRenderMessages;
|
|
include protocol PCompositorBridge;
|
|
include protocol PTexture;
|
|
|
|
using struct mozilla::layers::TextureInfo from "mozilla/layers/CompositorTypes.h";
|
|
using mozilla::layers::CompositableHandle from "mozilla/layers/LayersTypes.h";
|
|
using mozilla::wr::ByteBuffer from "mozilla/webrender/WebRenderTypes.h";
|
|
using mozilla::wr::ExternalImageId from "mozilla/webrender/WebRenderTypes.h";
|
|
using mozilla::wr::ImageKey from "mozilla/webrender/WebRenderTypes.h";
|
|
using mozilla::wr::FontKey from "mozilla/webrender/WebRenderTypes.h";
|
|
using WrBuiltDisplayListDescriptor from "mozilla/webrender/webrender_ffi.h";
|
|
using WrAuxiliaryListsDescriptor from "mozilla/webrender/webrender_ffi.h";
|
|
using mozilla::layers::WebRenderScrollData from "mozilla/layers/WebRenderScrollData.h";
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
sync protocol PWebRenderBridge
|
|
{
|
|
manager PCompositorBridge;
|
|
|
|
parent:
|
|
async NewCompositable(CompositableHandle handle, TextureInfo info);
|
|
async ReleaseCompositable(CompositableHandle compositable);
|
|
|
|
// Creates a set of mappings between TextureReadLocks and an associated
|
|
// ReadLockHandle that can be used in Update, and persist until the
|
|
// next Update call.
|
|
async InitReadLocks(ReadLockInit[] locks);
|
|
|
|
sync Create(IntSize aSize);
|
|
sync AddImage(ImageKey aImageKey, IntSize aSize, uint32_t aStride,
|
|
SurfaceFormat aFormat, ByteBuffer aBytes);
|
|
async AddBlobImage(ImageKey aImageKey, IntSize aSize, uint32_t aStride,
|
|
SurfaceFormat aFormat, ByteBuffer aBytes);
|
|
sync UpdateImage(ImageKey aImageKey, IntSize aSize,
|
|
SurfaceFormat aFormat, ByteBuffer aBytes);
|
|
sync DeleteImage(ImageKey aImageKey);
|
|
async AddRawFont(FontKey aFontKey, ByteBuffer aBytes, uint32_t aFontIndex);
|
|
async DeleteFont(FontKey aFontKey);
|
|
async DPBegin(IntSize aSize);
|
|
async DPEnd(IntSize aSize, WebRenderParentCommand[] commands, OpDestroy[] toDestroy, uint64_t fwdTransactionId, uint64_t transactionId,
|
|
ByteBuffer aDL, WrBuiltDisplayListDescriptor aDLDesc, ByteBuffer aAux, WrAuxiliaryListsDescriptor aAuxDesc,
|
|
WebRenderScrollData aScrollData);
|
|
sync DPSyncEnd(IntSize aSize, WebRenderParentCommand[] commands, OpDestroy[] toDestroy, uint64_t fwdTransactionId, uint64_t transactionId,
|
|
ByteBuffer aDL, WrBuiltDisplayListDescriptor aDLDesc, ByteBuffer aAux, WrAuxiliaryListsDescriptor aAuxDesc,
|
|
WebRenderScrollData aScrollData);
|
|
sync DPGetSnapshot(PTexture texture);
|
|
async AddExternalImageId(ExternalImageId aImageId, CompositableHandle aHandle);
|
|
async AddExternalImageIdForCompositable(ExternalImageId aImageId, CompositableHandle aHandle);
|
|
async RemoveExternalImageId(ExternalImageId aImageId);
|
|
async SetLayerObserverEpoch(uint64_t layerObserverEpoch);
|
|
async ClearCachedResources();
|
|
// Schedule a composite if one isn't already scheduled.
|
|
async ForceComposite();
|
|
|
|
async Shutdown();
|
|
child:
|
|
async __delete__();
|
|
};
|
|
|
|
} // layers
|
|
} // mozilla
|