diff options
author | emersion <contact@emersion.fr> | 2017-09-30 16:33:04 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-09-30 16:33:04 +0200 |
commit | 7f5d0624d666ee2af7d607a44105cb15c44e8481 (patch) | |
tree | 616dcba96739351b6ca7737bda9a526d74009ce1 /include | |
parent | e19b39b66b303f8dac9bea73993dd5515f2f0805 (diff) |
Add x, y, width, height arguments to wlr_xwayland_surface_configure
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/xwayland.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index 43133567..3525ff3b 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -81,7 +81,8 @@ struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display, void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland, struct wlr_xwayland_surface *surface); void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland, - struct wlr_xwayland_surface *surface); + struct wlr_xwayland_surface *surface, int16_t x, int16_t y, + uint16_t width, uint16_t height); void wlr_xwayland_surface_close(struct wlr_xwayland *wlr_xwayland, struct wlr_xwayland_surface *surface); |