From ebc341ddd4017ecdd738d93081b0e94d1d9d386a Mon Sep 17 00:00:00 2001 From: Gusar321 Date: Sat, 20 Feb 2016 21:46:44 +0100 Subject: vo_x11: add 16bpp support --- video/out/vo_x11.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video') diff --git a/video/out/vo_x11.c b/video/out/vo_x11.c index d763592020..28262231ac 100644 --- a/video/out/vo_x11.c +++ b/video/out/vo_x11.c @@ -185,6 +185,7 @@ const struct fmt_entry { {IMGFMT_RGB0, 32, LSBFirst, 0x000000FF, 0x0000FF00, 0x00FF0000}, {IMGFMT_BGR0, 32, MSBFirst, 0x0000FF00, 0x00FF0000, 0xFF000000}, {IMGFMT_BGR0, 32, LSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF}, + {IMGFMT_RGB565, 16, LSBFirst, 0x0000F800, 0x000007E0, 0x0000001F}, {0} }; -- cgit v1.2.3