disable lock fps and grab in comp as its not in the gui now.

SVN revision: 77555
This commit is contained in:
Carsten Haitzler 2012-10-07 09:56:22 +00:00
parent 4732cd7d07
commit 13f9c864ff
2 changed files with 6 additions and 2 deletions

View File

@ -75,10 +75,10 @@ e_mod_comp_cfdata_config_new(void)
cfg->fps_show = 0;
cfg->indirect = 0;
cfg->texture_from_pixmap = 1;
cfg->lock_fps = 1;
cfg->lock_fps = 0;
cfg->efl_sync = 0;
cfg->loose_sync = 1;
cfg->grab = 1;
cfg->grab = 0;
cfg->vsync = 1;
cfg->swap_mode = ECORE_EVAS_GL_X11_SWAP_MODE_AUTO;
cfg->keep_unmapped = 1;

View File

@ -48,6 +48,10 @@ e_modapi_init(E_Module *m)
mod->conf = e_config_domain_load("module.comp", mod->conf_edd);
if (!mod->conf) _e_mod_config_new(m);
/* force some config vals off */
mod->conf->lock_fps = 0;
mod->conf->indirect = 0;
if (!e_config->use_composite)
{