Summary: | Many different assertion failures on the GPU process bot after r270366 | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Tim Horton <thorton> | ||||||
Component: | New Bugs | Assignee: | Tim Horton <thorton> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | aakash_jain, ews-watchlist, rniwa, sabouhallawa, simon.fraser, webkit-bug-importer, wenson_hsieh | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
Tim Horton
2020-12-02 17:45:59 PST
Created attachment 415268 [details]
Patch
Comment on attachment 415268 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=415268&action=review > Source/WebKit/WebProcess/WebPage/WebPage.cpp:3799 > + WebProcess::singleton().setUseGPUProcessForDOMRendering(m_shouldRenderDOMInGPUProcess && DrawingArea::drawingAreaTypeSupportsGPUProcessRendering(m_drawingAreaType)); This is static on DrawingArea, and based on DrawingAreaType instead of just being a virtual bool getter on DrawingArea, because we might not have an m_drawingArea at this point. Comment on attachment 415268 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=415268&action=review > Source/WebKit/WebProcess/WebPage/DrawingArea.h:78 > + static bool drawingAreaTypeSupportsGPUProcessRendering(DrawingAreaType); Since this is called like DrawingArea::drawingAreaTypeSupportsGPUProcessRendering() I think you can all it supportsGPUProcessRenderingForType() or just supportsGPUProcessRendering() Comment on attachment 415268 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=415268&action=review >> Source/WebKit/WebProcess/WebPage/DrawingArea.h:78 >> + static bool drawingAreaTypeSupportsGPUProcessRendering(DrawingAreaType); > > Since this is called like DrawingArea::drawingAreaTypeSupportsGPUProcessRendering() I think you can all it supportsGPUProcessRenderingForType() or just supportsGPUProcessRendering() true Created attachment 415272 [details]
patch
Committed r270387: <https://trac.webkit.org/changeset/270387> All reviewed patches have been landed. Closing bug and clearing flags on attachment 415272 [details]. |