Bug 116713 - [META][GTK] Implement Deferred Rendering
Summary: [META][GTK] Implement Deferred Rendering
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-05-24 02:36 PDT by Jae Hyun Park
Modified: 2017-03-11 10:54 PST (History)
5 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jae Hyun Park 2013-05-24 02:36:49 PDT
This is a metabug to track Deferred Rendering in GTK+ port.

The purpose of Deferred Rendering is to perform rasterization on a dedicated thread to improve performance.

Current implementation of WebKit burdens the main thread with many jobs including layout, JavaScript execution, painting, and other heavy jobs. By performing rasterization on a separate thread,  we can reduce the responsibilities of the main thread and bring a noticeable performance improvement. 

For details, refer to the following design document:
https://docs.google.com/document/d/1K4q7KtPzsm6c7qUnHqW0NtAv7uItxgs35QZJvHsfLjY/pub

Any comments/discussions are appreciated.