aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2015-09-11 10:22:56 +1000
committerDavid Walter Seikel2015-09-11 10:22:56 +1000
commitcb7045a64e5bf5a8ecc93f562c162a406d2cd7ce (patch)
treec4fa4ade6ff80d624d87b067e16cfaa3fc1ab601 /src/extantz/extantz.c
parentNew OTR idea. (diff)
downloadSledjHamr-cb7045a64e5bf5a8ecc93f562c162a406d2cd7ce.zip
SledjHamr-cb7045a64e5bf5a8ecc93f562c162a406d2cd7ce.tar.gz
SledjHamr-cb7045a64e5bf5a8ecc93f562c162a406d2cd7ce.tar.bz2
SledjHamr-cb7045a64e5bf5a8ecc93f562c162a406d2cd7ce.tar.xz
Update to latest API changes.
Diffstat (limited to '')
-rw-r--r--src/extantz/extantz.c3
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
171static void _onWorldClick(void *data, Evas *e EINA_UNUSED, Evas_Object *o, void *einfo) 171static 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