aboutsummaryrefslogtreecommitdiff
path: root/include/backend/wayland.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-26 11:18:01 +0200
committerGitHub <noreply@github.com>2018-04-26 11:18:01 +0200
commitfac2c3e25fb77a9bc934c21bc172db6d0475d751 (patch)
treef25a9f5c082e3666ae83f83f908068a7ce7155a1 /include/backend/wayland.h
parent31857c9ed40a6bf34273b0459d2aa604642d1807 (diff)
parent625a7a48dc9f348a7556b03dd3c10a6a7d9c6037 (diff)
Merge pull request #882 from emersion/unprefix-local-symbols
Remove wlr_ prefix from local symbols
Diffstat (limited to 'include/backend/wayland.h')
-rw-r--r--include/backend/wayland.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h
index 00b6ae89..d1af954c 100644
--- a/include/backend/wayland.h
+++ b/include/backend/wayland.h
@@ -74,11 +74,11 @@ struct wlr_wl_pointer {
struct wl_listener output_destroy_listener;
};
-void wlr_wl_registry_poll(struct wlr_wl_backend *backend);
-void wlr_wl_output_update_cursor(struct wlr_wl_backend_output *output);
-struct wlr_wl_backend_output *wlr_wl_output_for_surface(
+void poll_wl_registry(struct wlr_wl_backend *backend);
+void update_wl_output_cursor(struct wlr_wl_backend_output *output);
+struct wlr_wl_backend_output *get_wl_output_for_surface(
struct wlr_wl_backend *backend, struct wl_surface *surface);
-void wlr_wl_output_layout_get_box(struct wlr_wl_backend *backend,
+void get_wl_output_layout_box(struct wlr_wl_backend *backend,
struct wlr_box *box);
extern const struct wl_seat_listener seat_listener;