aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/backend.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-13 09:59:14 -0400
committerDrew DeVault <sir@cmpwn.com>2017-08-13 10:19:57 -0400
commit43868168897f628fe75157be9ab38ea63310c920 (patch)
tree4abf844a207744843a95abfe07e5e1fe8b8bdc03 /include/wlr/backend.h
parent43fb40e949c6b0a7492935d358695fdc6ad593a9 (diff)
wlr_backend_init -> wlr_backend_start
Also renames create to init. We'll use create for anything that allocates and init for anything that takes a pointer and initializes it.
Diffstat (limited to 'include/wlr/backend.h')
-rw-r--r--include/wlr/backend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/backend.h b/include/wlr/backend.h
index f87e88bd..f92857eb 100644
--- a/include/wlr/backend.h
+++ b/include/wlr/backend.h
@@ -19,7 +19,7 @@ struct wlr_backend {
};
struct wlr_backend *wlr_backend_autocreate(struct wl_display *display);
-bool wlr_backend_init(struct wlr_backend *backend);
+bool wlr_backend_start(struct wlr_backend *backend);
void wlr_backend_destroy(struct wlr_backend *backend);
struct wlr_egl *wlr_backend_get_egl(struct wlr_backend *backend);