From 6973361d60ee6e2198accb6810c48ecbd568c751 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 29 Jul 2021 08:05:10 +0200 Subject: [PATCH] render/pixel-format: add some 24 and 16-bit formats --- render/pixel_format.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/render/pixel_format.c b/render/pixel_format.c index bf67019e..bfb0dc92 100644 --- a/render/pixel_format.c +++ b/render/pixel_format.c @@ -26,6 +26,42 @@ static const struct wlr_pixel_format_info pixel_format_info[] = { .bpp = 32, .has_alpha = true, }, + { + .drm_format = DRM_FORMAT_BGR888, + .opaque_substitute = DRM_FORMAT_INVALID, + .bpp = 24, + .has_alpha = false, + }, + { + .drm_format = DRM_FORMAT_RGBX4444, + .opaque_substitute = DRM_FORMAT_INVALID, + .bpp = 16, + .has_alpha = false, + }, + { + .drm_format = DRM_FORMAT_RGBA4444, + .opaque_substitute = DRM_FORMAT_RGBX4444, + .bpp = 16, + .has_alpha = false, + }, + { + .drm_format = DRM_FORMAT_RGBX5551, + .opaque_substitute = DRM_FORMAT_INVALID, + .bpp = 16, + .has_alpha = false, + }, + { + .drm_format = DRM_FORMAT_RGBA5551, + .opaque_substitute = DRM_FORMAT_RGBX5551, + .bpp = 16, + .has_alpha = false, + }, + { + .drm_format = DRM_FORMAT_RGB565, + .opaque_substitute = DRM_FORMAT_INVALID, + .bpp = 16, + .has_alpha = false, + }, }; static const size_t pixel_format_info_size =