diff options
author | Simon Ser <contact@emersion.fr> | 2022-10-03 11:44:21 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-10-04 09:15:19 +0200 |
commit | 6832ae14aaa659929ea13057616db34536f7f724 (patch) | |
tree | 0cf919203e2e27e4965dd851b3e9c97ee42e4c3e /backend | |
parent | 50cc1ef4d3791d86854dd83c15fff17e5ea1a5b6 (diff) |
render: drop wlr_renderer_read_pixels() flags
These are unused.
Diffstat (limited to 'backend')
-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 f109757d..6182258e 100644 --- a/backend/x11/output.c +++ b/backend/x11/output.c @@ -407,7 +407,7 @@ static bool output_cursor_to_picture(struct wlr_x11_output *output, } bool result = wlr_renderer_read_pixels( - renderer, DRM_FORMAT_ARGB8888, NULL, + renderer, DRM_FORMAT_ARGB8888, stride, buffer->width, buffer->height, 0, 0, 0, 0, data); |