2 # Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public
6 # License as published by the Free Software Foundation; either
7 # version 2 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public License
15 # along with this library; see the file COPYING.LIB. If not, write to
16 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 # Boston, MA 02110-1301, USA.
20 #if USE(COORDINATED_GRAPHICS)
21 messages -> CoordinatedLayerTreeHostProxy {
22 SetCompositingLayerState(uint32_t id, WebCore::CoordinatedLayerInfo layerInfo)
23 SetCompositingLayerChildren(uint32_t id, Vector<uint32_t> children)
24 #if ENABLE(CSS_FILTERS)
25 SetCompositingLayerFilters(uint32_t id, WebCore::FilterOperations filters)
27 #if ENABLE(CSS_SHADERS)
28 CreateCustomFilterProgram(int id, WebCore::CustomFilterProgramInfo programInfo)
29 RemoveCustomFilterProgram(int id)
31 SetRootCompositingLayer(uint32_t id)
32 CreateCompositingLayers(Vector<uint32_t> ids)
33 DeleteCompositingLayers(Vector<uint32_t> ids)
34 CreateTileForLayer(uint32_t layerID, uint32_t tileID, WebCore::IntRect tileRect, WebCore::SurfaceUpdateInfo updateInfo)
35 UpdateTileForLayer(uint32_t layerID, uint32_t tileID, WebCore::IntRect tileRect, WebCore::SurfaceUpdateInfo updateInfo)
36 RemoveTileForLayer(uint32_t layerID, uint32_t tileID)
37 CreateUpdateAtlas(uint32_t atlasID, WebKit::WebCoordinatedSurface::Handle handle)
38 RemoveUpdateAtlas(uint32_t atlasID)
39 CreateImageBacking(uint64_t imageID)
40 UpdateImageBacking(uint64_t imageID, WebKit::WebCoordinatedSurface::Handle handle)
41 ClearImageBackingContents(uint64_t imageID)
42 RemoveImageBacking(uint64_t imageID)
43 DidRenderFrame(WebCore::IntSize contentsSize, WebCore::IntRect coveredRect)
44 DidChangeScrollPosition(WebCore::FloatPoint position)
45 SetLayerAnimations(uint32_t id, WebCore::GraphicsLayerAnimations animations)
46 SetAnimationsLocked(bool locked)
48 #if ENABLE(REQUEST_ANIMATION_FRAME)
49 RequestAnimationFrame()
52 #if USE(GRAPHICS_SURFACE)
53 CreateCanvas(uint32_t id, WebCore::IntSize canvasSize, WebCore::GraphicsSurfaceToken token)
54 SyncCanvas(uint32_t id, uint32_t frontBuffer)
55 DestroyCanvas(uint32_t id)
58 SetLayerRepaintCount(uint32_t layerID, int value)
60 SetBackgroundColor(WebCore::Color color)