RESOLVED FIXED 171467
Async image decoding should be disabled for snapshots, printing and preview
https://bugs.webkit.org/show_bug.cgi?id=171467
Summary Async image decoding should be disabled for snapshots, printing and preview
Said Abou-Hallawa
Reported 2017-04-28 17:21:15 PDT
Async image decoding should only be used for window display where RenderElements can be repainted and painted. For cases where there is only one chance to draw the image, synchronous decoding should be used.
Attachments
Patch (4.64 KB, patch)
2017-04-28 17:22 PDT, Said Abou-Hallawa
no flags
Patch (3.29 KB, patch)
2017-05-01 12:32 PDT, Said Abou-Hallawa
no flags
Patch (11.18 KB, patch)
2017-05-03 10:23 PDT, Said Abou-Hallawa
no flags
Patch (12.33 KB, patch)
2017-05-03 11:56 PDT, Said Abou-Hallawa
no flags
Said Abou-Hallawa
Comment 1 2017-04-28 17:22:03 PDT
Said Abou-Hallawa
Comment 2 2017-04-28 17:23:48 PDT
Simon Fraser (smfr)
Comment 3 2017-05-01 10:51:20 PDT
Comment on attachment 308625 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308625&action=review > Source/WebCore/page/FrameView.cpp:4410 > + frame().settings().setLargeImageAsyncDecodingEnabled(false); We don't generally toggle settings as a way of setting temporary runtime state; toggling settings can have side effects like all-frame style recalcs. Why not just test (view().frameView().paintBehavior() & PaintBehaviorFlattenCompositingLayers) as we do in RenderBox::paintMaskImages?
Said Abou-Hallawa
Comment 4 2017-05-01 12:32:16 PDT
Simon Fraser (smfr)
Comment 5 2017-05-01 14:16:29 PDT
Is this testable (say, with an API test)?
Said Abou-Hallawa
Comment 6 2017-05-03 10:23:06 PDT
Simon Fraser (smfr)
Comment 7 2017-05-03 11:26:02 PDT
Comment on attachment 308921 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308921&action=review > Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WKWebViewSnapshot.mm:271 > + CGContextRef context = CGBitmapContextCreate(rgba, viewWidth, viewHeight, 8, 4 * viewWidth, colorSpace.get(), kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big); We we use RetainPtr<> = adoptCF() here?
Said Abou-Hallawa
Comment 8 2017-05-03 11:56:48 PDT
WebKit Commit Bot
Comment 9 2017-05-03 12:43:46 PDT
Comment on attachment 308935 [details] Patch Clearing flags on attachment: 308935 Committed r216135: <http://trac.webkit.org/changeset/216135>
WebKit Commit Bot
Comment 10 2017-05-03 12:43:47 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.