Do not advertize *RGB8888 as supported shm formats

They're always available and supported, and are added automatically.
Adding them again just duplicates them.
This commit is contained in:
Rostislav Pehlivanov 2018-04-21 14:31:52 +01:00
parent b116414bd5
commit 12298ce88c
1 changed files with 4 additions and 1 deletions

View File

@ -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]);
}
}
}