diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-13 15:45:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-13 15:45:08 -0500 |
commit | 10a2c4edec5e4f0877ff4afc83178c3f08b4f063 (patch) | |
tree | 8a67242c39b2086bf6c31891e5a1996770ea872c /examples/multi-pointer.c | |
parent | 8134d5b1e0b8c65f7c8b2e7ae626c1f2e5cbc9e1 (diff) | |
parent | 776b6ce39512c00d756b994528b4fb300c0d5610 (diff) |
Merge pull request #1462 from alexbakker/fix-soft-cursors
Fix software cursor rendering for tinywl and some examples
Diffstat (limited to 'examples/multi-pointer.c')
-rw-r--r-- | examples/multi-pointer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/multi-pointer.c b/examples/multi-pointer.c index 49670c39..a007f712 100644 --- a/examples/multi-pointer.c +++ b/examples/multi-pointer.c @@ -100,6 +100,7 @@ void output_frame_notify(struct wl_listener *listener, void *data) { sample->clear_color[2], sample->clear_color[3]); glClear(GL_COLOR_BUFFER_BIT); + wlr_output_render_software_cursors(wlr_output, NULL); wlr_output_swap_buffers(wlr_output, NULL, NULL); } |