Title: [208132] trunk/Source/WebKit/win
Revision
208132
Author
[email protected]
Date
2016-10-30 13:48:22 -0700 (Sun, 30 Oct 2016)

Log Message

Unreviewed build fix (Direct2D)

* WebView.cpp:
(WebView::paintWithDirect2D): Update for revised GraphicsContext
begin/end draw behavior.

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (208131 => 208132)


--- trunk/Source/WebKit/win/ChangeLog	2016-10-30 20:47:16 UTC (rev 208131)
+++ trunk/Source/WebKit/win/ChangeLog	2016-10-30 20:48:22 UTC (rev 208132)
@@ -1,3 +1,11 @@
+2016-10-30  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix (Direct2D)
+
+        * WebView.cpp:
+        (WebView::paintWithDirect2D): Update for revised GraphicsContext
+        begin/end draw behavior.
+
 2016-10-28  Darin Adler  <[email protected]>
 
         Move all classes in the HTML directory from ExceptionCode to Exception

Modified: trunk/Source/WebKit/win/WebView.cpp (208131 => 208132)


--- trunk/Source/WebKit/win/WebView.cpp	2016-10-30 20:47:16 UTC (rev 208131)
+++ trunk/Source/WebKit/win/WebView.cpp	2016-10-30 20:48:22 UTC (rev 208132)
@@ -197,10 +197,6 @@
 #include <WebCore/FullScreenController.h>
 #endif
 
-#if USE(DIRECT2D)
-#include <WebCore/RenderTargetScopedDrawing.h>
-#endif
-
 #include <ShlObj.h>
 #include <comutil.h>
 #include <dimm.h>
@@ -1251,8 +1247,6 @@
     GraphicsContext gc(m_renderTarget.get());
 
     {
-        WebCore::RenderTargetScopedDrawing scopedDraw(gc);
-
         m_renderTarget->SetTags(WEBKIT_DRAWING, __LINE__);
         m_renderTarget->Clear();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to