vo_x11: add 10 bit support

Requires zimg.
This commit is contained in:
wm4 2020-05-14 17:08:24 +02:00
parent 727b1bff57
commit edaefd6b47
1 changed files with 3 additions and 0 deletions

View File

@ -159,6 +159,8 @@ static void freeMyXImage(struct priv *p, int foo)
p->myximage[foo] = NULL;
}
#define BM(first, count) (((1 << (count)) - 1) << (first))
const struct fmt_entry {
uint32_t mpfmt;
int depth;
@ -176,6 +178,7 @@ const struct fmt_entry {
{IMGFMT_BGR0, 32, MSBFirst, 0x0000FF00, 0x00FF0000, 0xFF000000},
{IMGFMT_BGR0, 32, LSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF},
{IMGFMT_RGB565, 16, LSBFirst, 0x0000F800, 0x000007E0, 0x0000001F},
{IMGFMT_RGB30, 32, LSBFirst, BM(20, 10), BM(10, 10), BM(0, 10)},
{0}
};