From: devilhorns Date: Mon, 23 Jul 2012 09:31:49 +0000 (+0000) Subject: Ecore_Wayland: Update geometry callback function to match new changes X-Git-Tag: submit/trunk/20120815.175442~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef3a17b21e23fcef38bac3ab666fc6d006e43016;p=profile%2Fivi%2Fecore.git Ecore_Wayland: Update geometry callback function to match new changes in wayland. Now passes in a 'transform' also. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@74319 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_wayland/ecore_wl_output.c b/src/lib/ecore_wayland/ecore_wl_output.c index 8ad6ce5..5e6c38d 100644 --- a/src/lib/ecore_wayland/ecore_wl_output.c +++ b/src/lib/ecore_wayland/ecore_wl_output.c @@ -5,7 +5,7 @@ #include "ecore_wl_private.h" /* local function prototypes */ -static void _ecore_wl_output_cb_geometry(void *data, struct wl_output *wl_output __UNUSED__, int x, int y, int w, int h, int subpixel __UNUSED__, const char *make __UNUSED__, const char *model __UNUSED__); +static void _ecore_wl_output_cb_geometry(void *data, struct wl_output *wl_output __UNUSED__, int x, int y, int w, int h, int subpixel __UNUSED__, const char *make __UNUSED__, const char *model __UNUSED__, int transform __UNUSED__); static void _ecore_wl_output_cb_mode(void *data, struct wl_output *wl_output __UNUSED__, unsigned int flags, int w, int h, int refresh __UNUSED__); /* wayland listeners */ @@ -52,7 +52,7 @@ _ecore_wl_output_del(Ecore_Wl_Output *output) /* local functions */ static void -_ecore_wl_output_cb_geometry(void *data, struct wl_output *wl_output __UNUSED__, int x, int y, int w, int h, int subpixel __UNUSED__, const char *make __UNUSED__, const char *model __UNUSED__) +_ecore_wl_output_cb_geometry(void *data, struct wl_output *wl_output __UNUSED__, int x, int y, int w, int h, int subpixel __UNUSED__, const char *make __UNUSED__, const char *model __UNUSED__, int transform __UNUSED__) { Ecore_Wl_Output *output;