RESOLVED FIXED 159259
Duplicated code in DrawingAreaImpl and CoordinatedDrawingArea
https://bugs.webkit.org/show_bug.cgi?id=159259
Summary Duplicated code in DrawingAreaImpl and CoordinatedDrawingArea
Carlos Garcia Campos
Reported 2016-06-29 05:07:27 PDT
It seems that CoordinatedDrawingArea is just a copy paste of DrawingAreaImpl with non-accelerated code path removed. There's actually nothing (or very little) specific to coordinated graphics in the CoordinatedDrawingArea implementation.
Attachments
Patch (65.17 KB, patch)
2016-06-29 05:10 PDT, Carlos Garcia Campos
no flags
Updated patch (67.74 KB, patch)
2016-07-04 23:58 PDT, Carlos Garcia Campos
zan: review+
Carlos Garcia Campos
Comment 1 2016-06-29 05:10:40 PDT
Anders Carlsson
Comment 2 2016-06-29 17:48:24 PDT
Comment on attachment 282340 [details] Patch If you could get rid of DrawingAreaImpl, that would be great. I sent out an e-mail telling people that I'd like to get rid of it a while back.
Carlos Garcia Campos
Comment 3 2016-06-29 23:32:27 PDT
(In reply to comment #2) > Comment on attachment 282340 [details] > Patch > > If you could get rid of DrawingAreaImpl, that would be great. I sent out an > e-mail telling people that I'd like to get rid of it a while back. Not yet. The GTK+ port still enters/leaves AC mode when required, so we still need the non accelerated code path. We plan to switch to using the threaded compositor, which forces AC mode, but it's not really ready yet. Good thing is that after this patch, once we switch to threaded compositor, we can just remove DrawingAreaImpl and use AcceleratedDrawginArea. In the meantime, since Impl is only used by the GTK+ port, I can rename it to DrawingAreaGtk and move it to WebPage/gtk dir.
Carlos Garcia Campos
Comment 4 2016-07-04 23:58:40 PDT
Created attachment 282750 [details] Updated patch This should apply now
Zan Dobersek
Comment 5 2016-07-06 02:00:51 PDT
Comment on attachment 282750 [details] Updated patch View in context: https://bugs.webkit.org/attachment.cgi?id=282750&action=review > Source/WebKit2/WebProcess/WebPage/AcceleratedDrawingArea.cpp:91 > +void AcceleratedDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta) > +{ > + if (!m_isPaintingEnabled) > + return; > + > + m_layerTreeHost->scrollNonCompositedContents(scrollRect); > +} > + > +void AcceleratedDrawingArea::pageBackgroundTransparencyChanged() > +{ > + if (m_layerTreeHost) > + m_layerTreeHost->pageBackgroundTransparencyChanged(); > +} These differences in null-checking m_layerTreeHost are annoying.
Carlos Garcia Campos
Comment 6 2016-07-06 04:32:55 PDT
Note You need to log in before you can comment on or make changes to this bug.