Title: [183810] trunk/Source/WebKit/win
Revision
183810
Author
[email protected]
Date
2015-05-05 09:22:23 -0700 (Tue, 05 May 2015)

Log Message

Unreviewed WinCairo buildfix after r183807.

* WebCoreSupport/AcceleratedCompositingContext.cpp:
(AcceleratedCompositingContext::initialize):
(AcceleratedCompositingContext::acceleratedCompositingAvailable):

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (183809 => 183810)


--- trunk/Source/WebKit/win/ChangeLog	2015-05-05 16:13:05 UTC (rev 183809)
+++ trunk/Source/WebKit/win/ChangeLog	2015-05-05 16:22:23 UTC (rev 183810)
@@ -1,3 +1,11 @@
+2015-05-05  Csaba Osztrogonác  <[email protected]>
+
+        Unreviewed WinCairo buildfix after r183807.
+
+        * WebCoreSupport/AcceleratedCompositingContext.cpp:
+        (AcceleratedCompositingContext::initialize):
+        (AcceleratedCompositingContext::acceleratedCompositingAvailable):
+
 2015-04-28  Ryuan Choi  <[email protected]>
 
         [CoordinatedGraphics] Merge TILED_BACKING_STORE guard with COORDINATED_GRAPHICS

Modified: trunk/Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.cpp (183809 => 183810)


--- trunk/Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.cpp	2015-05-05 16:13:05 UTC (rev 183809)
+++ trunk/Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.cpp	2015-05-05 16:22:23 UTC (rev 183810)
@@ -106,7 +106,7 @@
 
     m_context->makeContextCurrent();
 
-    m_textureMapper = TextureMapperGL::create(TextureMapper::OpenGLMode);
+    m_textureMapper = TextureMapperGL::create();
     downcast<GraphicsLayerTextureMapper>(*m_rootLayer).layer().setTextureMapper(m_textureMapper.get());
 
     scheduleLayerFlush();
@@ -266,7 +266,7 @@
 
     context->makeContextCurrent();
 
-    std::unique_ptr<WebCore::TextureMapper> textureMapper = TextureMapperGL::create(TextureMapper::OpenGLMode);
+    std::unique_ptr<WebCore::TextureMapper> textureMapper = TextureMapperGL::create();
 
     if (!textureMapper) {
         ::DestroyWindow(testWindow);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to