mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-29 02:10:07 +01:00
kdrive/mga: fix compiler warning
Change a case that only made one test for an if, preventing the compiler warning about all other PICT_* types being unsupported.
This commit is contained in:
parent
2f0a800ffd
commit
8724af248c
1 changed files with 1 additions and 3 deletions
|
|
@ -286,10 +286,8 @@ mgaCheckComposite(int op, PicturePtr pSrcPicture, PicturePtr pMaskPicture,
|
|||
if (pMaskPicture->componentAlpha)
|
||||
MGA_FALLBACK(("Component alpha unsupported"));
|
||||
|
||||
switch (pDstPicture->format) {
|
||||
case PICT_a8:
|
||||
if (pDstPicture->format == PICT_a8)
|
||||
MGA_FALLBACK(("render to A8 unsupported"));
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue