WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
217532
[GPU Process] Add additional support for painting video elements to 2D contexts
https://bugs.webkit.org/show_bug.cgi?id=217532
Summary
[GPU Process] Add additional support for painting video elements to 2D contexts
Wenson Hsieh
Reported
2020-10-09 13:32:49 PDT
In particular: - CanvasRenderingContext2D.createPattern(HTMLVideoElement, …); - createImageBitmap(HTMLVideoElement, …);
Attachments
Patch
(11.92 KB, patch)
2020-10-09 14:26 PDT
,
Wenson Hsieh
no flags
Details
Formatted Diff
Diff
Patch
(11.92 KB, patch)
2020-10-09 14:34 PDT
,
Wenson Hsieh
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Wenson Hsieh
Comment 1
2020-10-09 14:26:48 PDT
Comment hidden (obsolete)
Created
attachment 410975
[details]
Patch
Wenson Hsieh
Comment 2
2020-10-09 14:34:07 PDT
Created
attachment 410976
[details]
Patch
EWS
Comment 3
2020-10-09 16:39:39 PDT
Committed
r268299
: <
https://trac.webkit.org/changeset/268299
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 410976
[details]
.
Radar WebKit Bug Importer
Comment 4
2020-10-09 16:40:17 PDT
<
rdar://problem/70158828
>
Sam Weinig
Comment 5
2020-10-10 10:25:10 PDT
Comment on
attachment 410976
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=410976&action=review
> Source/WebKit/WebProcess/WebPage/WebPage.cpp:7208 > + case RenderingPurpose::MediaPainting: > + return m_page->settings().useGPUProcessForMediaEnabled();
It's not ideal that WebCore::Settings is being used for this. WebCore really shouldn't know about the GPUProcess. Perhaps its ok, because Settings is just like "a bag of state", but we should try to avoid this. This could probably be avoided by just storing this state on the WebPage and/or keeping around the WebPreferencesStore that get's passed in preferencesDidChange.
Wenson Hsieh
Comment 6
2020-10-10 10:37:12 PDT
Comment on
attachment 410976
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=410976&action=review
>> Source/WebKit/WebProcess/WebPage/WebPage.cpp:7208 >> + return m_page->settings().useGPUProcessForMediaEnabled(); > > It's not ideal that WebCore::Settings is being used for this. WebCore really shouldn't know about the GPUProcess. Perhaps its ok, because Settings is just like "a bag of state", but we should try to avoid this. This could probably be avoided by just storing this state on the WebPage and/or keeping around the WebPreferencesStore that get's passed in preferencesDidChange.
Yeah — Said and I avoided adding a similar “render canvas in GPU process” flag in WebCore::Settings for this reason. I think ideally, the GPUP-for-media setting should be refactored to be more like the canvas one (but I didn’t try to fix that in this patch).
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug