Hello
Is there anyone have information about how much time does it take a completely GUI initiation ?
/* Startup your subsystem and obtain the frame buffer or display device */
framebuffer = YourSubsystem_Initialize();
/* Query the size of your frame buffer or display device */
YourSubsystem_GetFramebufferSize( framebuffer, &w, &h );
/* Initialize the Graphics Engine and the Runtime Environment */
EwInitGraphicsEngine( &framebuffer );
/* Create the applications root object ... */
rootObject = (CoreRoot)EwNewObjectIndirect( EwApplicationClass, 0 );
EwLockObject( rootObject );
/* ... and initialize the application object. */
CoreRoot__Initialize( rootObject, EwScreenSize );
/* Create the viewport object to provide access to the framebuffer */
viewport = EwInitViewport( EwScreenSize, EwNewRect( 0, 0, w, h ), 0, 255, framebuffer, 0, 0, 0 );
/* Initialize your device driver(s) that provide data for your GUI */
YourDevice_Initialize();
Regards