On Sat, Jun 11, 2011 at 12:18 PM, pushparaj muthu <[email protected]> wrote: > By loading the normal URLsite, I found that frame->view->paint function > under PaintWebView() function is consuming more CPU cycles. > Is there any way to optimize the the function frame->view->paint
You'll need to look a bit deeper, I think. FrameView::paint() is the entire frame render. It makes sense that it would take a lot of time, because rendering is an expensive operation. The goal is to find which bits of rendering are the most expensive and focus on those. --Martin _______________________________________________ webkit-gtk mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-gtk
