diff options
author | Simon Ser <contact@emersion.fr> | 2021-04-20 17:26:39 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-04-20 17:28:30 +0200 |
commit | 3173a4f353f990e96a49e5a24f0d8cf57b21176c (patch) | |
tree | 10a65a6621f916bd5d8791c33c3680f9b5779729 /sway | |
parent | 6327f1b36196d5b6e22be9c9f839f29d5f23f346 (diff) |
Use cairo_image_surface_get_stride instead of guessing it
Diffstat (limited to 'sway')
-rw-r--r-- | sway/tree/container.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 47772b62..438ff157 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -554,7 +554,7 @@ static void update_title_texture(struct sway_container *con, cairo_surface_flush(surface); unsigned char *data = cairo_image_surface_get_data(surface); - int stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width); + int stride = cairo_image_surface_get_stride(surface); struct wlr_renderer *renderer = wlr_backend_get_renderer( output->wlr_output->backend); *texture = wlr_texture_from_pixels( @@ -1639,7 +1639,7 @@ static void update_marks_texture(struct sway_container *con, cairo_surface_flush(surface); unsigned char *data = cairo_image_surface_get_data(surface); - int stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width); + int stride = cairo_image_surface_get_stride(surface); struct wlr_renderer *renderer = wlr_backend_get_renderer( output->wlr_output->backend); *texture = wlr_texture_from_pixels( |