Changeset 267586 in webkit
- Timestamp:
- Sep 25, 2020, 12:03:26 PM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/run_webkit_tests.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r267579 r267586 1 2020-09-25 Wenson Hsieh <wenson_hsieh@apple.com> 2 3 REGRESSION (r267516): `--use-gpu-process` no longer enables GPU process when running layout tests 4 https://bugs.webkit.org/show_bug.cgi?id=216980 5 6 Reviewed by Tim Horton. 7 8 Rename `UseGPUProcessForMedia` and `RenderCanvasInGPUProcessEnabled`, and additionally enable a few internal 9 feature flags: `UseGPUProcessForWebGLEnabled`, `UseGPUProcessForDOMRenderingEnabled`, and 10 `CaptureVideoInGPUProcessEnabled`. 11 12 * Scripts/webkitpy/layout_tests/run_webkit_tests.py: 13 (parse_args): 14 1 15 2020-09-25 Jonathan Bedard <jbedard@apple.com> 2 16 -
trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
r267517 r267586 385 385 if not options.internal_feature: 386 386 options.internal_feature = [] 387 options.internal_feature.append('UseGPUProcessForMedia ')387 options.internal_feature.append('UseGPUProcessForMediaEnabled') 388 388 options.internal_feature.append('CaptureAudioInGPUProcessEnabled') 389 options.internal_feature.append('RenderCanvasInGPUProcessEnabled') 389 options.internal_feature.append('CaptureVideoInGPUProcessEnabled') 390 options.internal_feature.append('UseGPUProcessForCanvasRenderingEnabled') 391 options.internal_feature.append('UseGPUProcessForDOMRenderingEnabled') 392 options.internal_feature.append('UseGPUProcessForWebGLEnabled') 390 393 if options.result_report_flavor: 391 394 raise RuntimeError('--use-gpu-process implicitly sets the result flavor, this should not be overridden')
Note:
See TracChangeset
for help on using the changeset viewer.