aboutsummaryrefslogtreecommitdiff
path: root/examples/touch.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-19 08:45:44 -0400
committerGitHub <noreply@github.com>2017-08-19 08:45:44 -0400
commitb876bea288bc4827a9de157eed481b823c081a4b (patch)
tree94fb650815691f98ab633c7731496f14ac751dc2 /examples/touch.c
parent3674085faede2960581461cf8f40c33ffce85e7c (diff)
parent84c0c87a5ddca24cb039f33eea38252681bb4636 (diff)
Merge pull request #114 from martinetd/cleanups
Cleanups
Diffstat (limited to 'examples/touch.c')
-rw-r--r--examples/touch.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/touch.c b/examples/touch.c
index 7e01a6c2..7e8d9827 100644
--- a/examples/touch.c
+++ b/examples/touch.c
@@ -107,12 +107,12 @@ int main(int argc, char *argv[]) {
};
compositor_init(&compositor);
- state.renderer = wlr_gles2_renderer_init(compositor.backend);
+ state.renderer = wlr_gles2_renderer_create(compositor.backend);
if (!state.renderer) {
wlr_log(L_ERROR, "Could not start compositor, OOM");
exit(EXIT_FAILURE);
}
- state.cat_texture = wlr_render_texture_init(state.renderer);
+ state.cat_texture = wlr_render_texture_create(state.renderer);
if (!state.cat_texture) {
wlr_log(L_ERROR, "Could not start compositor, OOM");
exit(EXIT_FAILURE);
@@ -120,8 +120,9 @@ int main(int argc, char *argv[]) {
wlr_texture_upload_pixels(state.cat_texture, WL_SHM_FORMAT_ARGB8888,
cat_tex.width, cat_tex.width, cat_tex.height, cat_tex.pixel_data);
- compositor_run(&compositor);
+ wl_display_run(compositor.display);
wlr_texture_destroy(state.cat_texture);
wlr_renderer_destroy(state.renderer);
+ compositor_fini(&compositor);
}