diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-09-10 19:10:20 +0200 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-09-10 19:10:20 +0200 |
commit | 284837daa07b29d6a63a748544a90b1f5842ac5c (patch) | |
tree | ecd258180bde91fe741e0cfd2638beb3c6da7e8e /Source/WebKit2/UIProcess/CoordinatedGraphics | |
parent | 2e2ba8ff45915f40ed3e014101269c175f2a89a0 (diff) | |
download | qtwebkit-284837daa07b29d6a63a748544a90b1f5842ac5c.tar.gz |
Imported WebKit commit 68645295d2e3e09af2c942f092556f06aa5f8b0d (http://svn.webkit.org/repository/webkit/trunk@128073)
New snapshot
Diffstat (limited to 'Source/WebKit2/UIProcess/CoordinatedGraphics')
4 files changed, 7 insertions, 7 deletions
diff --git a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp index 6b0de7f25..e6f582f22 100644 --- a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp +++ b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp @@ -66,9 +66,9 @@ void LayerTreeCoordinatorProxy::updateTileForLayer(int layerID, int tileID, cons { RefPtr<ShareableSurface> surface; #if USE(GRAPHICS_SURFACE) - int token = updateInfo.surfaceHandle.graphicsSurfaceToken(); + uint64_t token = updateInfo.surfaceHandle.graphicsSurfaceToken(); if (token) { - HashMap<uint32_t, RefPtr<ShareableSurface> >::iterator it = m_surfaces.find(token); + HashMap<uint64_t, RefPtr<ShareableSurface> >::iterator it = m_surfaces.find(token); if (it == m_surfaces.end()) { surface = ShareableSurface::create(updateInfo.surfaceHandle); m_surfaces.add(token, surface); diff --git a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h index ed71dfe94..65a9f5e99 100644 --- a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h +++ b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h @@ -88,7 +88,7 @@ protected: float m_lastSentScale; WebCore::FloatPoint m_lastSentTrajectoryVector; #if USE(GRAPHICS_SURFACE) - HashMap<uint32_t, RefPtr<ShareableSurface> > m_surfaces; + HashMap<uint64_t, RefPtr<ShareableSurface> > m_surfaces; #endif }; diff --git a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp index 481b9f74b..b94c66b9d 100644 --- a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp +++ b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp @@ -66,7 +66,7 @@ private: } }; -void LayerTreeRenderer::callOnMainTread(const Function<void()>& function) +void LayerTreeRenderer::dispatchOnMainThread(const Function<void()>& function) { if (isMainThread()) function(); @@ -397,7 +397,7 @@ void LayerTreeRenderer::flushLayerChanges() commitTileOperations(); // The pending tiles state is on its way for the screen, tell the web process to render the next one. - callOnMainThread(bind(&LayerTreeRenderer::renderNextFrame, this)); + dispatchOnMainThread(bind(&LayerTreeRenderer::renderNextFrame, this)); } void LayerTreeRenderer::renderNextFrame() @@ -458,7 +458,7 @@ void LayerTreeRenderer::purgeGLResources() setActive(false); - callOnMainThread(bind(&LayerTreeRenderer::purgeBackingStores, this)); + dispatchOnMainThread(bind(&LayerTreeRenderer::purgeBackingStores, this)); } void LayerTreeRenderer::setAnimatedOpacity(uint32_t id, float opacity) diff --git a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.h b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.h index 5706a4ccd..4e45678e6 100644 --- a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.h +++ b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.h @@ -104,7 +104,7 @@ private: virtual bool showDebugBorders(const WebCore::GraphicsLayer*) const { return false; } virtual bool showRepaintCounter(const WebCore::GraphicsLayer*) const { return false; } void paintContents(const WebCore::GraphicsLayer*, WebCore::GraphicsContext&, WebCore::GraphicsLayerPaintingPhase, const WebCore::IntRect&) { } - void callOnMainTread(const Function<void()>&); + void dispatchOnMainThread(const Function<void()>&); void adjustPositionForFixedLayers(); typedef HashMap<WebLayerID, WebCore::GraphicsLayer*> LayerMap; |