diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-30 14:31:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-30 14:31:57 -0400 |
commit | bfb6914cdf725d9a614e5ae7f6b3f189aa3bd89e (patch) | |
tree | 0f4b9f20187792d4859830048b7ab44df0709185 /include/rootston | |
parent | e3438233f19a813731c049b8b5eae19220e4e87f (diff) | |
parent | 8f41c497a71ab0ca7fec96957d109b3b0adb702e (diff) | |
download | wlroots-bfb6914cdf725d9a614e5ae7f6b3f189aa3bd89e.tar.xz |
Merge pull request #160 from acrisci/feature/subcompositor
Subcompositor
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/desktop.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h index 392b0271..91ac87b7 100644 --- a/include/rootston/desktop.h +++ b/include/rootston/desktop.h @@ -52,7 +52,8 @@ struct roots_desktop *desktop_create(struct roots_server *server, void desktop_destroy(struct roots_desktop *desktop); void view_destroy(struct roots_view *view); -struct roots_view *view_at(struct roots_desktop *desktop, int x, int y); +struct roots_view *view_at(struct roots_desktop *desktop, double lx, double ly, + struct wlr_surface **surface, double *sx, double *sy); void view_activate(struct roots_view *view, bool activate); void output_add_notify(struct wl_listener *listener, void *data); |