RESOLVED FIXED Bug 162924
[Win][Direct2D] Connect WebCore/WebKit Drawing
https://bugs.webkit.org/show_bug.cgi?id=162924
Summary [Win][Direct2D] Connect WebCore/WebKit Drawing
Brent Fulgham
Reported 2016-10-04 11:08:04 PDT
This patch updates the Windows WebKit layer to use Direct2D for drawing. It also touches a number of WebCore implementation files to supply Direct2D-compatible drawing logic, as well as stubbing out some routines that are not yet supported in this new drawing mode. This patch simply adds the new files. It does not incorporate them into the build.
Attachments
Patch (16.63 KB, patch)
2016-10-04 17:43 PDT, Brent Fulgham
achristensen: review+
Brent Fulgham
Comment 1 2016-10-04 17:43:09 PDT
WebKit Commit Bot
Comment 2 2016-10-04 17:45:46 PDT
Attachment 290675 [details] did not pass style-queue: ERROR: Source/WebKit/win/WebView.cpp:1146: Use the class HWndDC instead of calling GetDC to avoid potential memory leaks. [runtime/leaky_pattern] [5] Total errors found: 1 in 6 files If any of these errors are false positives, please file a bug against check-webkit-style.
Brent Fulgham
Comment 3 2016-10-04 17:49:26 PDT
(In reply to comment #2) > Attachment 290675 [details] did not pass style-queue: > > > ERROR: Source/WebKit/win/WebView.cpp:1146: Use the class HWndDC instead of > calling GetDC to avoid potential memory leaks. [runtime/leaky_pattern] [5] > Total errors found: 1 in 6 files > > > If any of these errors are false positives, please file a bug against > check-webkit-style. This is an error in the style checker. The 'GetDC' function here is a conversion routine from Direct2D. It has nothing to do with the HWndDC class.
Alex Christensen
Comment 4 2016-10-05 00:19:38 PDT
Comment on attachment 290675 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=290675&action=review > Source/WebKit/win/WebView.cpp:1246 > + m_renderTarget->SetTags(2, __LINE__); Why? > Source/WebKit/win/WebView.cpp:1276 > + (void)hr; Just don't name hr.
Brent Fulgham
Comment 5 2016-10-05 10:24:08 PDT
Comment on attachment 290675 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=290675&action=review >> Source/WebKit/win/WebView.cpp:1246 >> + m_renderTarget->SetTags(2, __LINE__); > > Why? This is a debugging function. I'll add a macro for the first argument. When Flush or EndDraw has an error, it outputs these two numbers, which can be used to identify which drawing logic was executing at the time of a failure. >> Source/WebKit/win/WebView.cpp:1276 >> + (void)hr; > > Just don't name hr. I'll use UNUSED_PARAM, since I want access to 'hr' when debugging so I can see what the error was.
Brent Fulgham
Comment 6 2016-10-05 10:24:23 PDT
Note You need to log in before you can comment on or make changes to this bug.