Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is "off-screen-rendering" in ChromiumEmbeddedFramework (CEF)

I am not able to understand the term "off-screen-rendering" in the context of chromium embedded framework.

When should it used or How should it used.

It is very deep in the codebase(cef) to trace and find some meaning.

Please help.

like image 626
Chandra Koduru Avatar asked Mar 10 '15 07:03

Chandra Koduru


1 Answers

You can see description here: GeneralUsage#Off-Screen Rendering

It can be used for, e.g., loading very big page in background and then displaying it (it will be much more faster).

Or, for example, for crawling pages full of js-code: CEF will run all scripts in background and return you the resulting page.

like image 81
vladon Avatar answered Sep 26 '22 05:09

vladon