mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-28 02:30:32 +01:00
EXA: Teach exaCompositeFallbackPictDesc() about x8r8g8b8.
This commit is contained in:
parent
3e12c5bb67
commit
bb8868540f
1 changed files with 3 additions and 0 deletions
|
|
@ -51,6 +51,9 @@ static void exaCompositeFallbackPictDesc(PicturePtr pict, char *string, int n)
|
|||
case PICT_a8r8g8b8:
|
||||
snprintf(format, 20, "ARGB8888");
|
||||
break;
|
||||
case PICT_x8r8g8b8:
|
||||
snprintf(format, 20, "XRGB8888");
|
||||
break;
|
||||
case PICT_r5g6b5:
|
||||
snprintf(format, 20, "RGB565 ");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue