diff options
Diffstat (limited to 'src/extantz/extantz.c')
-rw-r--r-- | src/extantz/extantz.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c index 6b18eaf..6ef9e14 100644 --- a/src/extantz/extantz.c +++ b/src/extantz/extantz.c | |||
@@ -170,7 +170,7 @@ static Eina_Bool _del(void *data, int type, Ecore_Con_Event_Server_Del *ev) | |||
170 | #if USE_EVAS_3D | 170 | #if USE_EVAS_3D |
171 | static void _onWorldClick(void *data, Evas *e EINA_UNUSED, Evas_Object *o, void *einfo) | 171 | static void _onWorldClick(void *data, Evas *e EINA_UNUSED, Evas_Object *o, void *einfo) |
172 | { | 172 | { |
173 | Evas_3D_Node *n = data; | 173 | Eo *n = data; |
174 | // Evas_Event_Mouse_Down *ev = einfo; | 174 | // Evas_Event_Mouse_Down *ev = einfo; |
175 | 175 | ||
176 | if (n) | 176 | if (n) |
@@ -629,6 +629,7 @@ EAPI_MAIN int elm_main(int argc, char **argv) | |||
629 | // One or more of these lets us use the 3D stuff. | 629 | // One or more of these lets us use the 3D stuff. |
630 | setenv("ELM_ENGINE", "opengl_x11", 1); | 630 | setenv("ELM_ENGINE", "opengl_x11", 1); |
631 | setenv("ECORE_EVAS_ENGINE", "opengl_x11", 1); | 631 | setenv("ECORE_EVAS_ENGINE", "opengl_x11", 1); |
632 | elm_config_preferred_engine_set("opengl_x11"); | ||
632 | elm_config_accel_preference_set("3d"); | 633 | elm_config_accel_preference_set("3d"); |
633 | ourGlobals.mainWindow = winFangAdd(NULL, 0, 0, 50, 20, "extantz virtual world viewer", "extantz", NULL); | 634 | ourGlobals.mainWindow = winFangAdd(NULL, 0, 0, 50, 20, "extantz virtual world viewer", "extantz", NULL); |
634 | 635 | ||