diff options
author | emersion <contact@emersion.fr> | 2018-10-02 12:11:09 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-10-04 22:00:24 +0200 |
commit | eac7c2ad2faf49084342d9f805cf06b773723fdd (patch) | |
tree | 6fbd71fd0fe6f06183a7ee94b03727f69341328b /backend/x11 | |
parent | abd3e995ab446b5487f4d2ff16d9e2c3f1baade1 (diff) |
output: add presentation refresh prediction
Diffstat (limited to 'backend/x11')
-rw-r--r-- | backend/x11/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/x11/output.c b/backend/x11/output.c index 8cd8ee33..1ac12a8d 100644 --- a/backend/x11/output.c +++ b/backend/x11/output.c @@ -106,7 +106,7 @@ static bool output_swap_buffers(struct wlr_output *wlr_output, return false; } - wlr_output_send_present(wlr_output, NULL, 0, 0); + wlr_output_send_present(wlr_output, NULL); return true; } |