diff options
author | Christopher Michael <cp.michael@samsung.com> | 2013-02-05 14:16:00 +0000 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@linux.intel.com> | 2013-02-19 10:18:03 -0300 |
commit | 232ea5b875f7b173fbf88ef53f54ceb10b8fae3a (patch) | |
tree | de73745fe43d9fcfbac80443471642bbd882a067 /src | |
parent | 899e4f745c05788d815de02c697e28e605698605 (diff) | |
download | efl-232ea5b875f7b173fbf88ef53f54ceb10b8fae3a.tar.gz efl-232ea5b875f7b173fbf88ef53f54ceb10b8fae3a.tar.xz efl-232ea5b875f7b173fbf88ef53f54ceb10b8fae3a.zip |
Fix function prototypes to take resize edges into account.
Signed-off-by: Christopher Michael <cp.michael@samsung.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/evas/engines/wayland_shm/evas_swapbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/evas/engines/wayland_shm/evas_swapbuf.h b/src/modules/evas/engines/wayland_shm/evas_swapbuf.h index 7f74a78cd..874b820b5 100644 --- a/src/modules/evas/engines/wayland_shm/evas_swapbuf.h +++ b/src/modules/evas/engines/wayland_shm/evas_swapbuf.h @@ -3,9 +3,9 @@ # include "evas_engine.h" -Outbuf *evas_swapbuf_setup(int w, int h, unsigned int rotation, Outbuf_Depth depth, Eina_Bool alpha, struct wl_shm *wl_shm, struct wl_surface *wl_surface); +Outbuf *evas_swapbuf_setup(int x, int y, int w, int h, unsigned int rotation, Outbuf_Depth depth, Eina_Bool alpha, struct wl_shm *wl_shm, struct wl_surface *wl_surface); void evas_swapbuf_free(Outbuf *ob); -void evas_swapbuf_reconfigure(Outbuf *ob, int w, int h, unsigned int rotation, Outbuf_Depth depth, Eina_Bool alpha); +void evas_swapbuf_reconfigure(Outbuf *ob, int x, int y, int w, int h, unsigned int rotation, Outbuf_Depth depth, Eina_Bool alpha); RGBA_Image *evas_swapbuf_update_region_new(Outbuf *ob, int x, int y, int w, int h, int *cx, int *cy, int *cw, int *ch); void evas_swapbuf_update_region_push(Outbuf *ob, RGBA_Image *update, int x, int y, int w, int h); void evas_swapbuf_update_region_free(Outbuf *ob, RGBA_Image *update); |