Do not advertize *RGB8888 as supported shm formats

They're always available and supported, and are added automatically.
Adding them again just duplicates them.
master
Rostislav Pehlivanov 7 years ago
parent b116414bd5
commit 12298ce88c

@ -168,6 +168,9 @@ void wlr_renderer_init_wl_shm(struct wlr_renderer *r,
} }
for (size_t i = 0; i < len; ++i) { 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]);
}
} }
} }

Loading…
Cancel
Save