change gl engine api a little - fixed in ecore-evas and expedite. expose

indirect option in ecore-evas with a new opt param for gl engines - will add
more opts over time.



SVN revision: 46177
This commit is contained in:
Carsten Haitzler 2010-02-15 05:05:05 +00:00
parent 31146dce8b
commit 72fb4bcb67
1 changed files with 4 additions and 3 deletions

View File

@ -40,9 +40,10 @@ engine_gl_x11_args(int argc, char **argv)
}
einfo->info.display = disp;
einfo->info.visual = einfo->func.best_visual_get(disp, DefaultScreen(disp));
einfo->info.colormap = einfo->func.best_colormap_get(disp, DefaultScreen(disp));
einfo->info.depth = einfo->func.best_depth_get(disp, DefaultScreen(disp));
einfo->info.screen = DefaultScreen(einfo->info.display);
einfo->info.visual = einfo->func.best_visual_get(einfo);
einfo->info.colormap = einfo->func.best_colormap_get(einfo);
einfo->info.depth = einfo->func.best_depth_get(einfo);
attr.backing_store = NotUseful;
attr.colormap = einfo->info.colormap;
attr.border_pixel = 0;