Fill in some default properties for our engine info.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 83231
This commit is contained in:
Christopher Michael 2013-01-24 09:15:15 +00:00 committed by Christopher Michael
parent c13e0e7b5f
commit f3d29d891b
1 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,10 @@ eng_info(Evas *eo_evas EINA_UNUSED)
if (!(info = calloc(1, sizeof(Evas_Engine_Info_Wayland_Shm))))
return NULL;
/* fill in default engine info fields */
info->magic.magic = rand();
info->render_mode = EVAS_RENDER_MODE_BLOCKING;
return NULL;
}