diff options
Diffstat (limited to 'WebKit/qt/Api/qwebframe_p.h')
-rw-r--r-- | WebKit/qt/Api/qwebframe_p.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/WebKit/qt/Api/qwebframe_p.h b/WebKit/qt/Api/qwebframe_p.h index 5660bd1..7c0d235 100644 --- a/WebKit/qt/Api/qwebframe_p.h +++ b/WebKit/qt/Api/qwebframe_p.h @@ -33,6 +33,10 @@ #include "Frame.h" #include "ViewportArguments.h" +#if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER) +#include "texmap/TextureMapper.h" +#endif + namespace WebCore { class FrameLoaderClientQt; class FrameView; @@ -94,6 +98,9 @@ public: void renderFromTiledBackingStore(WebCore::GraphicsContext*, const QRegion& clip); #endif +#if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER) + void renderCompositedLayers(WebCore::GraphicsContext* context, const WebCore::IntRect& clip); +#endif QWebFrame *q; Qt::ScrollBarPolicy horizontalScrollBarPolicy; Qt::ScrollBarPolicy verticalScrollBarPolicy; @@ -106,6 +113,7 @@ public: int marginHeight; #if USE(ACCELERATED_COMPOSITING) && USE(TEXTURE_MAPPER) WebCore::TextureMapperContentLayer* rootGraphicsLayer; + OwnPtr<WebCore::TextureMapper> textureMapper; #endif bool zoomTextOnly; }; |