aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2018-04-21 14:31:52 +0100
committerRostislav Pehlivanov <atomnuker@gmail.com>2018-04-21 14:58:25 +0100
commit12298ce88c799d4ea58571b1138a374500155ebd (patch)
tree68dfe99c198ae21b7db5ed613012bf070817d469
parentb116414bd5dbc15ec1df3734a4c99c1b5e304982 (diff)
Do not advertize *RGB8888 as supported shm formats
They're always available and supported, and are added automatically. Adding them again just duplicates them.
-rw-r--r--render/wlr_renderer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/render/wlr_renderer.c b/render/wlr_renderer.c
index a41ae388..700da05b 100644
--- a/render/wlr_renderer.c
+++ b/render/wlr_renderer.c
@@ -168,6 +168,9 @@ void wlr_renderer_init_wl_shm(struct wlr_renderer *r,
}
for (size_t i = 0; i < len; ++i) {
- wl_display_add_shm_format(display, formats[i]);
+ if (formats[i] != WL_SHM_FORMAT_ARGB8888 &&
+ formats[i] != WL_SHM_FORMAT_XRGB8888) {
+ wl_display_add_shm_format(display, formats[i]);
+ }
}
}